satie
Version:
A sheet music renderer for the web
16 lines (15 loc) • 360 B
TypeScript
import { IModel, ILayout } from "./document";
/**
* Registers Proxy in the factory structure passed in.
*/
declare function Export(constructors: {
[key: number]: any;
}): void;
declare module Export {
interface IProxyModel extends IModel {
}
interface IProxyLayout extends ILayout {
model: IProxyModel;
}
}
export default Export;