photoncss
Version:
Go from 0 to app in seconds
26 lines (25 loc) • 748 B
TypeScript
import guid from "./util/guid";
export { guid };
import resize from "./util/resize";
export { resize };
import Waves from "./util/Waves.js";
export { Waves };
import Dialog from "./util/class/Dialog";
export { Dialog };
import Drawer from "./util/class/Drawer";
export { Drawer };
import Menu from "./util/class/Menu";
export { Menu };
import Snackbar from "./util/class/Snackbar";
export { Snackbar };
export declare type PhotonSelector = string | Element | JQuery;
export declare type UnityPhotonSelector = string & Element & JQuery;
declare const _default: {
guid: typeof guid;
resize: typeof resize;
Dialog: typeof Dialog;
Drawer: typeof Drawer;
Menu: typeof Menu;
Snackbar: typeof Snackbar;
};
export default _default;