isoflow/src/global.d.ts

15 lines
315 B
TypeScript
Raw Normal View History

import { Size, Coords, SceneInput } from 'src/types';
declare global {
let PACKAGE_VERSION: string;
let REPOSITORY_URL: string;
interface Window {
Isoflow: {
2023-08-13 11:54:37 +00:00
getUnprojectedBounds: () => Size & Coords;
2023-08-14 10:48:51 +00:00
fitProjectToScreen: () => void;
setScene: (scene: SceneInput) => void;
};
}
}