@actinc/dls
Version:
Design Language System (DLS) for ACT & Encoura front-end projects.
19 lines • 607 B
TypeScript
/**
* Copyright (c) ACT, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
import { LineRawDataProps } from '.';
interface IData {
date: string;
DATA_POINT_1: number;
DATA_POINT_2: number;
DATA_POINT_3: number;
}
export declare const DATA: Array<IData>;
export declare const defaultLineKeys: string[];
export declare const processDataFn: (data: Array<IData>) => Array<LineRawDataProps>;
export declare const yAxisDataKey: () => string;
export {};
//# sourceMappingURL=mocks.d.ts.map