index.ts 199 B

1234567891011
  1. import CodeEditorModal from './src/index.vue';
  2. export type CodeEditorModalInstance = {
  3. open: (code: string) => void;
  4. close: () => void;
  5. getCode: () => string;
  6. };
  7. export {
  8. CodeEditorModal,
  9. }