Type unknown objects

ludder

Tom

Posted on May 6, 2021

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
💖 💪 🙅 🚩
ludder
Tom

Posted on May 6, 2021

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related