UNPKG

@nodecg/types

Version:

Dynamic broadcast graphics rendered in a browser

19 lines (18 loc) 438 B
interface File { url: string; data: UnknownObject; schema: { plugins: { resolveURL(paths: { from: string; to: string; }): string; }; }; } interface UnknownObject { [k: string]: unknown; [k: number]: unknown; } export declare function formatSchema(inputObj: unknown, currentFile: File, allFiles: File[]): UnknownObject | undefined; export {};