mirror of https://github.com/vuejs/core.git
9 lines
189 B
TypeScript
9 lines
189 B
TypeScript
|
/// <reference types="vite/client" />
|
||
|
|
||
|
// Global compile-time constants
|
||
|
declare var __COMMIT__: string
|
||
|
|
||
|
declare module 'file-saver' {
|
||
|
export function saveAs(blob: any, name: any): void
|
||
|
}
|