UNPKG

219 BTypeScriptView Raw
1import 'object-exporter/dist/exporter';
2
3export interface Configuration {
4 exportable: any;
5 type?: string;
6}
7
8declare var objectExporter: (params: string | Configuration) => void;
9
10export default objectExporter;