bpms_site/.svn/pristine/28/2890d1619be1e5047f0fd5b17e3b59cf298c4780.svn-base
2025-11-02 16:38:49 +03:30

9 lines
348 B
Plaintext

export type ClientComponentImports = string[];
export type CssImports = Record<string, string[]>;
export type NextFlightClientEntryLoaderOptions = {
modules: ClientComponentImports;
/** This is transmitted as a string to `getOptions` */
server: boolean | 'true' | 'false';
};
export default function transformSource(this: any): string;