Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
elements.ts 166 B
export type ElementId = string | number;
export type Tab = string;
export type ElementIdTab = [ElementId, Tab];
export type ElementIdTabObj = Record<ElementId, Tab>;