UNPKG

294 BTypeScriptView Raw
1/**
2 * Wraps an array of strings. The Array describes a path from the root of the
3 * syntax tree to a token including all scope names for the entire path.
4 */
5export interface ScopeDescriptor {
6 /** Returns all scopes for this descriptor. */
7 getScopesArray(): ReadonlyArray<string>;
8}