@linzjs/step-ag-grid
Version:
[](https://github.com/semantic-release/semantic-release) > Reusable [ag-grid](https://www.ag-grid.com/) component for LINZ / Toitū te whenua.
10 lines (9 loc) • 315 B
TypeScript
export interface GridSubComponentContextType {
value: any;
data: any;
setValue: (value: string) => void;
setValid: (valid: boolean) => void;
triggerSave: () => Promise<void>;
context: any;
}
export declare const GridSubComponentContext: import("react").Context<GridSubComponentContextType>;