template-project/node_modules/exiftool-vendored/dist/Struct.d.ts
2025-05-30 18:13:30 +08:00

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;