vega-typings
Version:
Typings for Vega.
15 lines (13 loc) • 338 B
TypeScript
import { Axis, Data, Layout, Legend, Mark, Projection, Scale, Signal, Title } from '../index.js';
export interface Scope {
title?: string | Title;
layout?: Layout;
signals?: Signal[];
projections?: Projection[];
data?: Data[];
scales?: Scale[];
axes?: Axis[];
legends?: Legend[];
marks?: Mark[];
usermeta?: object;
}