You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
368 B
21 lines
368 B
import { CSVWave, TestDataQuery } from './types';
|
|
|
|
export const defaultPulseQuery: any = {
|
|
timeStep: 60,
|
|
onCount: 3,
|
|
onValue: 2,
|
|
offCount: 3,
|
|
offValue: 1,
|
|
};
|
|
|
|
export const defaultCSVWaveQuery: CSVWave[] = [
|
|
{
|
|
timeStep: 60,
|
|
valuesCSV: '0,0,2,2,1,1',
|
|
},
|
|
];
|
|
|
|
export const defaultQuery: TestDataQuery = {
|
|
scenarioId: 'random_walk',
|
|
refId: '',
|
|
};
|
|
|