@firebase/firestore
Version:
The Cloud Firestore component of the Firebase JS SDK.
42 lines (41 loc) • 892 B
TypeScript
export default allBuilds;
declare const allBuilds: ({
input: string;
output: {
file: any;
format: string;
sourcemap: boolean;
};
plugins: any[];
external: (id: any) => boolean;
treeshake: {
moduleSideEffects: boolean;
};
onwarn: (warning: any, defaultWarn: any) => void;
} | {
input: any;
output: {
file: any;
format: string;
sourcemap: boolean;
};
plugins: any[];
external: (id: any) => boolean;
treeshake: {
moduleSideEffects: boolean;
};
onwarn?: undefined;
} | {
input: any;
output: {
file: any;
format: string;
sourcemap: boolean;
}[];
plugins: any[];
external: (id: any) => boolean;
treeshake: {
moduleSideEffects: boolean;
};
onwarn?: undefined;
})[];