UNPKG

@airplane/views

Version:

A React library for building Airplane views. Views components are optimized in style and functionality to produce internal apps that are easy to build and maintain.

12 lines (11 loc) 309 B
import { BaseState, DefaultState } from "../BaseState"; export type DialogState = { id: string; opened: boolean; open: () => void; close: () => void; } & BaseState; export type InitialDialogState = { opened?: boolean; }; export declare const DefaultDialogState: DefaultState<DialogState>;