@apoorvdwi/excalidraw-collab
Version:
Excalidraw as a React component
49 lines (48 loc) • 1.17 kB
TypeScript
export const mode: string;
export const entry: {
"excalidraw-utils.min": string;
};
export namespace output {
const path: string;
const filename: string;
const library: string;
const libraryTarget: string;
}
export namespace resolve {
const extensions: string[];
}
export namespace optimization {
const runtimeChunk: boolean;
}
export namespace module {
const rules: ({
test: RegExp;
exclude: RegExp;
use: (string | {
loader: string;
})[];
} | {
test: RegExp;
use: ({
loader: string;
options: {
transpileOnly: boolean;
configFile: string;
presets?: undefined;
plugins?: undefined;
};
} | {
loader: string;
options: {
presets: (string | (string | {
runtime: string;
})[])[];
plugins: string[][];
transpileOnly?: undefined;
configFile?: undefined;
};
})[];
exclude?: undefined;
})[];
}
export const plugins: any[];