@fesjs/fes-design
Version:
fes-design for PC
13 lines (12 loc) • 518 B
TypeScript
import type { SFCWithInstall } from '../_util/interface';
import Grid from './grid.vue';
import GridItem from './gridItem.vue';
type GridType = SFCWithInstall<typeof Grid>;
type GridItemType = SFCWithInstall<typeof GridItem>;
export { gridProps } from './grid.vue';
export type { GridProps } from './grid.vue';
export declare const FGrid: GridType;
export { gridItemProps } from './gridItem.vue';
export type { GridItemProps } from './gridItem.vue';
export declare const FGridItem: GridItemType;
export default FGrid;