Timo Hocker
d9de76b188
All checks were successful
continuous-integration/drone/push Build is passing
21 lines
618 B
TypeScript
21 lines
618 B
TypeScript
/*
|
|
* Copyright (C) Sapphirecode - All Rights Reserved
|
|
* This file is part of console-app which is released under MIT.
|
|
* See file 'LICENSE' for full license details.
|
|
* Created by Timo Hocker <timo@scode.ovh>, October 2020
|
|
*/
|
|
|
|
import { ArraySubSource } from './ArraySubSource';
|
|
import { BooleanSubSource } from './BooleanSubSource';
|
|
import { PresetSubSource } from './PresetSubSource';
|
|
import { StringSubSource } from './StringSubSource';
|
|
import { NumberSubSource } from './NumberSubSource';
|
|
|
|
export const sources = [
|
|
ArraySubSource,
|
|
BooleanSubSource,
|
|
PresetSubSource,
|
|
NumberSubSource,
|
|
StringSubSource
|
|
];
|