5 lines
110 B
TypeScript
5 lines
110 B
TypeScript
import { Config } from '../types';
|
|
|
|
export const getDefaultConfig = (): Config => {
|
|
return { en: 'on' };
|
|
};
|