deephaven / web-client-ui

Deephaven Web Client UI
Apache License 2.0
29 stars 31 forks source link

Branded type helpers #2263

Closed bmingles closed 1 month ago

bmingles commented 1 month ago

Move branded type helpers from deephaven-vscode into @deephaven/utils so they can be used in DHC + DHE.

// Branded type helpers
declare const __brand: unique symbol;
export type Brand<T extends string, TBase = string> = TBase & {
  readonly [__brand]: T;
};