Skip to content

Instantly share code, notes, and snippets.

@hz2
Last active July 10, 2023 10:16
Show Gist options
  • Save hz2/580d0fd3975710beee45a39b31cfd709 to your computer and use it in GitHub Desktop.
Save hz2/580d0fd3975710beee45a39b31cfd709 to your computer and use it in GitHub Desktop.
export interface FormItem {
[k: string]: string | number | boolean;
}
export type NestFormItem =
& FormItem
& {
[k : string]: FormItem[];
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment