mirror of
https://github.com/501351981/vue-office.git
synced 2025-06-15 07:00:00 +08:00
12 lines
297 B
TypeScript
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; |