yanzhen-design-vue
Version:
17 lines (16 loc) • 504 B
TypeScript
import { ExtractPropTypes } from 'vue';
export declare const otherTableOptions: {
ns: any;
class: any;
name: any;
};
export declare const otherTableName: any;
export declare const otherTableProps: {
[x: string]: any;
};
export declare const otherTableEmits: {
'update:value': (val: any) => boolean;
};
export type OtherTableProps = ExtractPropTypes<typeof otherTableProps>;
export type OtherTablePropsKey = keyof OtherTableProps;
export type OtherTableEmits = typeof otherTableEmits;