webstreamr-github/src/utils/config.ts

5 lines
110 B
TypeScript

import { Config } from '../types';
export const getDefaultConfig = (): Config => {
return { en: 'on' };
};