@farris/bef-vue
Version:
18 lines (17 loc) • 425 B
TypeScript
import { Type, RepositoryConfig } from '@farris/devkit-vue';
import { BefProxy } from './bef-proxy';
/**
* Bef远程仓库变量配置
*/
interface BefVariableConfig {
name: string;
}
/**
* Bef远程仓库配置
*/
interface BefRepositoryConfig extends RepositoryConfig {
baseUrl: string;
variables: BefVariableConfig[];
apiProxyType?: Type<BefProxy>;
}
export { BefVariableConfig, BefRepositoryConfig };