mirror of https://github.com/abpframework/abp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
552 B
26 lines
552 B
export declare namespace FeatureManagement {
|
|
interface State {
|
|
features: Feature[];
|
|
}
|
|
interface ValueType {
|
|
name: string;
|
|
properties: object;
|
|
validator: object;
|
|
}
|
|
interface Feature {
|
|
name: string;
|
|
value: string;
|
|
description?: string;
|
|
valueType?: ValueType;
|
|
depth?: number;
|
|
parentName?: string;
|
|
}
|
|
interface Features {
|
|
features: Feature[];
|
|
}
|
|
interface Provider {
|
|
providerName: string;
|
|
providerKey: string;
|
|
}
|
|
}
|