@aotearoan/neon
Version:
Neon is a lightweight design library of Vue 3 components with minimal dependencies.
22 lines (21 loc) • 817 B
TypeScript
/**
* A grid area is the basic container corresponding to a grid area defined in the NeonGrid component.
*/
declare const _default: import("vue").DefineComponent<{
/**
* Identifier of the grid area (this should match a named area in the grid layout)
*/
id: {
type: StringConstructor;
required: true;
};
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
/**
* Identifier of the grid area (this should match a named area in the grid layout)
*/
id: {
type: StringConstructor;
required: true;
};
}>>, {}, {}>;
export default _default;