Skip to content

Type Alias: MemberKind

ts
type MemberKind = 
  | "record"
  | "modifier"
  | "part"
  | "property"
  | "function"
  | "animation"
  | "layer"
  | "state"
  | "condition";

Defined in: packages/index/src/index.ts:87

The kinds of record member a span can be keyed to.

Released under the MIT License