5 lines
162 B
TypeScript
5 lines
162 B
TypeScript
export type Struct = {
|
|
[k: string]: number | string | Struct | Array<Struct | number | string>;
|
|
};
|
|
export declare function isStruct(o: unknown): o is Struct;
|