index.d.ts 438 B

123456789101112131415
  1. /// <reference types="../index" />
  2. import { App } from "vue";
  3. import "./static/index.scss";
  4. declare const Crud: {
  5. install(app: App, options?: Options): {
  6. name: string;
  7. };
  8. };
  9. export default Crud;
  10. export * from "./emitter";
  11. export * from "./hooks/crud";
  12. export * from "./hooks/plugins";
  13. export * from "./locale";
  14. export { registerFormHook } from "./utils/form-hook";
  15. export { ContextMenu } from "./components/context-menu";