1 | import { _SPInstance, _SPCollection } from "../spqueryable.js";
|
2 | export declare class _Features extends _SPCollection<IFeatureInfo[]> {
|
3 | |
4 |
|
5 |
|
6 |
|
7 |
|
8 |
|
9 | add(featureId: string, force?: boolean): Promise<IFeatureAddResult>;
|
10 | |
11 |
|
12 |
|
13 |
|
14 |
|
15 | getById(id: string): IFeature;
|
16 | |
17 |
|
18 |
|
19 |
|
20 |
|
21 |
|
22 | remove(featureId: string, force?: boolean): Promise<any>;
|
23 | }
|
24 | export interface IFeatures extends _Features {
|
25 | }
|
26 | export declare const Features: import("../spqueryable.js").ISPInvokableFactory<IFeatures>;
|
27 | export declare class _Feature extends _SPInstance<IFeatureInfo> {
|
28 | }
|
29 | export interface IFeature extends _Feature {
|
30 | }
|
31 | export declare const Feature: import("../spqueryable.js").ISPInvokableFactory<IFeature>;
|
32 |
|
33 |
|
34 |
|
35 | export interface IFeatureAddResult {
|
36 | data: IFeatureInfo;
|
37 | feature: IFeature;
|
38 | }
|
39 | export interface IFeatureInfo {
|
40 | DefinitionId: string;
|
41 | }
|
42 |
|
\ | No newline at end of file |