Skip to content

Series

This content is not available in your language yet.

const Series: {
A: "A";
B: "B";
C: "C";
D: "D";
E: "E";
F: "F";
};

Defined in: core/series.ts:262

Enum-like accessor for series codes. Lets callers write Series.F instead of the bare string 'F' while keeping the type a narrow string literal so it remains JSON-serializable and tree-shakable.

readonly A: "A" = 'A';
readonly B: "B" = 'B';
readonly C: "C" = 'C';
readonly D: "D" = 'D';
readonly E: "E" = 'E';
readonly F: "F" = 'F';