DEV Community

Tom
Tom

Posted on

Type unknown objects

Sometimes I need to type an object, but I don't know how it will look like. Then I type it with the Record utility type:

export interface Label {
    name: string;
    options: Record<string, any>[];
}
Enter fullscreen mode Exit fullscreen mode

Top comments (0)