Token interface

Signature

  1. export interface Token

Import

  1. import { Token } from '@grafana/ui';

Properties

PropertyTypeDescription
aliasesstring[]
contentstring
nextToken | null
offsets{
start: number;
end: number;
}
prevToken | null
typesstring[]

aliases property

Signature

  1. aliases: string[];

content property

Signature

  1. content: string;

next property

Signature

  1. next?: Token | null;

offsets property

Signature

  1. offsets?: {
  2. start: number;
  3. end: number;
  4. };

prev property

Signature

  1. prev?: Token | null;

types property

Signature

  1. types: string[];