tdesign-mobile-vue
Version:
tdesign-mobile-vue
14 lines (13 loc) • 393 B
TypeScript
import { App } from 'vue';
import { TdDrawerProps } from './type';
type DrawerOptions = Omit<TdDrawerProps, 'attach'>;
export declare function DrawerPlugin(options: DrawerOptions): {
destroy(): void;
hide(): void;
show(): void;
update(options: DrawerOptions): void;
};
export declare namespace DrawerPlugin {
var install: (app: App) => void;
}
export default DrawerPlugin;