8 lines
219 B
TypeScript
8 lines
219 B
TypeScript
import { ModuleConfig as CoreModuleConfig } from '@ucap-webmessenger/core';
|
|
|
|
import { Urls } from './urls';
|
|
|
|
export interface ModuleConfig extends CoreModuleConfig<Urls> {
|
|
acceptableFileExtensions: string[];
|
|
}
|