2023-11-28 14:41:46 +08:00

12 lines
297 B
TypeScript

export interface Options {
minColLength?: number;
minRowLength?: number;
showContextmenu?: boolean;
}
declare const VueOfficeExcel: {
install?: (vue: any) => void;
src: string|ArrayBuffer|Blob;
requestOptions?: any;
options?: Options;
};
export default VueOfficeExcel;