Skip to content

Series

const Series: {
E: "E";
F: "F";
};

Defined in: core/series.ts:83

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 E: "E" = 'E';
readonly F: "F" = 'F';