@fluent-form/core
Version:
An Angular dynamic forms library powered by Fluent API and JSON.
12 lines (11 loc) • 446 B
TypeScript
import type { FluentColDirective, FluentRowDirective } from '../directives';
export interface Row {
align?: ReturnType<FluentRowDirective['align']>;
justify?: ReturnType<FluentRowDirective['justify']>;
gap?: ReturnType<FluentRowDirective['gap']>;
}
export interface Column {
span?: ReturnType<FluentColDirective['span']>;
offset?: ReturnType<FluentColDirective['offset']>;
flex?: ReturnType<FluentColDirective['flex']>;
}