uudev 1.1.9 → 1.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,263 @@
1
+ /// <reference path="enum/adodb_enum.d.ts" />
2
+
3
+ interface Collection{
4
+ readonly Count: number;
5
+ Refresh(): void;
6
+ }
7
+ interface DynaCollection{
8
+ Append(Object: object | any): void;
9
+ Delete(Index: any): void;
10
+ }
11
+ interface ADO{
12
+ readonly Properties: Properties;
13
+ }
14
+ interface Properties{
15
+ Item(Index: any): Property;
16
+ }
17
+ interface Property{
18
+ Value: any;
19
+ readonly Name: string;
20
+ readonly Type: DataTypeEnum;
21
+ Attributes: number;
22
+ }
23
+ interface Error{
24
+ readonly Number: number;
25
+ readonly Source: string;
26
+ readonly Description: string;
27
+ readonly HelpFile: string;
28
+ readonly HelpContext: number;
29
+ readonly SQLState: string;
30
+ readonly NativeError: number;
31
+ }
32
+ interface Errors{
33
+ Item(Index: any): Error;
34
+ Clear(): void;
35
+ }
36
+ interface Command15{
37
+ ActiveConnection: any;
38
+ CommandText: string;
39
+ CommandTimeout: number;
40
+ Prepared: boolean;
41
+ Execute(RecordsAffected?: any, Parameters?: any, Options?: number): Recordset;
42
+ CreateParameter(Name?: string, Type?: DataTypeEnum, Direction?: ParameterDirectionEnum, Size?: any, Value?: any): Parameter;
43
+ readonly Parameters: Parameters;
44
+ CommandType: CommandTypeEnum;
45
+ Name: string;
46
+ }
47
+ interface Connection{
48
+ Cancel(): void;
49
+ }
50
+ interface Connection15{
51
+ ConnectionString: string;
52
+ CommandTimeout: number;
53
+ ConnectionTimeout: number;
54
+ readonly Version: string;
55
+ Close(): void;
56
+ Execute(CommandText: string, RecordsAffected?: any, Options?: number): Recordset;
57
+ BeginTrans(): number;
58
+ CommitTrans(): void;
59
+ RollbackTrans(): void;
60
+ Open(ConnectionString?: string, UserID?: string, Password?: string, Options?: number): void;
61
+ readonly Errors: Errors;
62
+ DefaultDatabase: string;
63
+ IsolationLevel: solationLevelEnum;
64
+ Attributes: number;
65
+ CursorLocation: CursorLocationEnum;
66
+ Mode: ConnectModeEnum;
67
+ Provider: string;
68
+ readonly State: number;
69
+ OpenSchema(Schema: SchemaEnum, Restrictions?: any, SchemaID?: any): Recordset;
70
+ }
71
+ interface Recordset{
72
+ Save(Destination?: any, PersistFormat?: PersistFormatEnum): void;
73
+ }
74
+ interface Recordset21{
75
+ Seek(KeyValues: any, SeekOption?: SeekEnum): void;
76
+ Index: string;
77
+ }
78
+ interface Recordset20{
79
+ Cancel(): void;
80
+ readonly DataSource: object | any;
81
+ _xSave(FileName?: string, PersistFormat?: PersistFormatEnum): void;
82
+ readonly ActiveCommand: object | any;
83
+ StayInSync: boolean;
84
+ GetString(StringFormat?: StringFormatEnum, NumRows?: number, ColumnDelimeter?: string, RowDelimeter?: string, NullExpr?: string): string;
85
+ DataMember: string;
86
+ CompareBookmarks(Bookmark1: any, Bookmark2: any): CompareEnum;
87
+ Clone(LockType?: LockTypeEnum): Recordset;
88
+ Resync(AffectRecords?: AffectEnum, ResyncValues?: ResyncEnum): void;
89
+ }
90
+ interface Recordset15{
91
+ AbsolutePosition: PositionEnum_Param;
92
+ ActiveConnection: any;
93
+ readonly BOF: boolean;
94
+ Bookmark: any;
95
+ CacheSize: number;
96
+ CursorType: CursorTypeEnum;
97
+ readonly EOF: boolean;
98
+ readonly Fields: Fields;
99
+ LockType: LockTypeEnum;
100
+ MaxRecords: any;
101
+ readonly RecordCount: any;
102
+ Source: string;
103
+ AddNew(FieldList?: any, Values?: any): void;
104
+ CancelUpdate(): void;
105
+ Close(): void;
106
+ Delete(AffectRecords?: AffectEnum): void;
107
+ GetRows(Rows?: number, Start?: any, Fields?: any): any;
108
+ Move(NumRecords: any, Start?: any): void;
109
+ MoveNext(): void;
110
+ MovePrevious(): void;
111
+ MoveFirst(): void;
112
+ MoveLast(): void;
113
+ Open(Source?: any, ActiveConnection?: any, CursorType?: CursorTypeEnum, LockType?: LockTypeEnum, Options?: number): void;
114
+ Requery(Options?: number): void;
115
+ _xResync(AffectRecords?: AffectEnum): void;
116
+ Update(Fields?: any, Values?: any): void;
117
+ AbsolutePage: PositionEnum_Param;
118
+ readonly EditMode: EditModeEnum;
119
+ Filter: any;
120
+ readonly PageCount: any;
121
+ PageSize: number;
122
+ Sort: string;
123
+ readonly Status: number;
124
+ readonly State: number;
125
+ _xClone(): Recordset;
126
+ UpdateBatch(AffectRecords?: AffectEnum): void;
127
+ CancelBatch(AffectRecords?: AffectEnum): void;
128
+ CursorLocation: CursorLocationEnum;
129
+ NextRecordset(RecordsAffected?: any): Recordset;
130
+ Supports(CursorOptions: CursorOptionEnum): boolean;
131
+ Collect(Index: any, pvar?: any): void;
132
+ MarshalOptions: MarshalOptionsEnum;
133
+ Find(Criteria: string, SkipRecords?: any, SearchDirection?: SearchDirectionEnum, Start?: any): void;
134
+ }
135
+ interface Fields{
136
+ Append(Name: string, Type: DataTypeEnum, DefinedSize?: any, Attrib?: FieldAttributeEnum, FieldValue?: any): void;
137
+ Update(): void;
138
+ Resync(ResyncValues?: ResyncEnum): void;
139
+ CancelUpdate(): void;
140
+ }
141
+ interface Fields20{
142
+ _Append(Name: string, Type: DataTypeEnum, DefinedSize?: any, Attrib?: FieldAttributeEnum): void;
143
+ Delete(Index: any): void;
144
+ }
145
+ interface Fields15{
146
+ Item(Index: any): Field;
147
+ }
148
+ interface Field{
149
+ readonly Status: number;
150
+ }
151
+ interface Field20{
152
+ readonly ActualSize: any;
153
+ readonly Name: string;
154
+ Value: any;
155
+ AppendChunk(Data: any): void;
156
+ GetChunk(Length: number): any;
157
+ readonly OriginalValue: any;
158
+ readonly UnderlyingValue: any;
159
+ readonly DataFormat: object | any;
160
+ Precision: number;
161
+ NumericScale: number;
162
+ Type: DataTypeEnum;
163
+ DefinedSize: any;
164
+ Attributes: number;
165
+ }
166
+ interface Parameter{
167
+ Name: string;
168
+ Value: any;
169
+ Type: DataTypeEnum;
170
+ Direction: ParameterDirectionEnum;
171
+ Precision: number;
172
+ NumericScale: number;
173
+ Size: any;
174
+ AppendChunk(Val: any): void;
175
+ Attributes: number;
176
+ }
177
+ interface Parameters{
178
+ Item(Index: any): Parameter;
179
+ }
180
+ interface Command25{
181
+ readonly State: number;
182
+ Cancel(): void;
183
+ }
184
+ interface Command{
185
+ readonly CommandStream: any;
186
+ Dialect: string;
187
+ NamedParameters: boolean;
188
+ }
189
+ interface ADOConnectionConstruction15{
190
+ readonly DSO: object | any;
191
+ readonly Session: object | any;
192
+ WrapDSOandSession(pDSO: object | any, pSession: object | any): void;
193
+ }
194
+ interface ADOConnectionConstruction{
195
+ }
196
+ interface Record{
197
+ ActiveConnection: string;
198
+ readonly State: ObjectStateEnum;
199
+ Source: string;
200
+ Mode: ConnectModeEnum;
201
+ readonly ParentURL: string;
202
+ MoveRecord(Source?: string, Destination?: string, UserName?: string, Password?: string, Options?: MoveRecordOptionsEnum, Async?: boolean): string;
203
+ CopyRecord(Source?: string, Destination?: string, UserName?: string, Password?: string, Options?: CopyRecordOptionsEnum, Async?: boolean): string;
204
+ DeleteRecord(Source?: string, Async?: boolean): void;
205
+ Open(Source?: any, ActiveConnection?: any, Mode?: ConnectModeEnum, CreateOptions?: RecordCreateOptionsEnum, Options?: RecordOpenOptionsEnum, UserName?: string, Password?: string): void;
206
+ Close(): void;
207
+ readonly Fields: Fields;
208
+ readonly RecordType: RecordTypeEnum;
209
+ GetChildren(): Recordset;
210
+ Cancel(): void;
211
+ }
212
+ interface Stream{
213
+ readonly Size: any;
214
+ readonly EOS: boolean;
215
+ Position: any;
216
+ Type: StreamTypeEnum;
217
+ LineSeparator: LineSeparatorEnum;
218
+ readonly State: ObjectStateEnum;
219
+ Mode: ConnectModeEnum;
220
+ Charset: string;
221
+ Read(NumBytes?: number): any;
222
+ Open(Source?: any, Mode?: ConnectModeEnum, Options?: StreamOpenOptionsEnum, UserName?: string, Password?: string): void;
223
+ Close(): void;
224
+ SkipLine(): void;
225
+ Write(Buffer: any): void;
226
+ SetEOS(): void;
227
+ CopyTo(DestStream: Stream, CharNumber?: any): void;
228
+ Flush(): void;
229
+ SaveToFile(FileName: string, Options?: SaveOptionsEnum): void;
230
+ LoadFromFile(FileName: string): void;
231
+ ReadText(NumChars?: number): string;
232
+ WriteText(Data: string, Options?: StreamWriteEnum): void;
233
+ Cancel(): void;
234
+ }
235
+ interface ADORecordConstruction{
236
+ Row: object | any;
237
+ ParentRow: object | any;
238
+ }
239
+ interface ADOStreamConstruction{
240
+ Stream: object | any;
241
+ }
242
+ interface ADOCommandConstruction{
243
+ OLEDBCommand: object | any;
244
+ }
245
+ interface ADORecordsetConstruction{
246
+ Rowset: object | any;
247
+ Chapter: any;
248
+ RowPosition: object | any;
249
+ }
250
+ interface Field15{
251
+ readonly ActualSize: any;
252
+ readonly Attributes: number;
253
+ readonly DefinedSize: any;
254
+ readonly Name: string;
255
+ readonly Type: DataTypeEnum;
256
+ Value: any;
257
+ readonly Precision: number;
258
+ readonly NumericScale: number;
259
+ AppendChunk(Data: any): void;
260
+ GetChunk(Length: number): any;
261
+ readonly OriginalValue: any;
262
+ readonly UnderlyingValue: any;
263
+ }
@@ -0,0 +1,385 @@
1
+ /// <reference path="enum/dao_enum.d.ts" />
2
+
3
+ interface DAO{
4
+ readonly Properties: Properties;
5
+ }
6
+ interface Properties{
7
+ Item(Item: any): Property;
8
+ }
9
+ interface DynaCollection{
10
+ Append(Object: object | any): void;
11
+ Delete(Name: string): void;
12
+ }
13
+ interface Collection{
14
+ readonly Count: number;
15
+ Refresh(): void;
16
+ }
17
+ interface Property{
18
+ Value: any;
19
+ Name: string;
20
+ Type: number;
21
+ readonly Inherited: boolean;
22
+ }
23
+ interface DBEngine{
24
+ readonly Version: string;
25
+ IniPath: string;
26
+ DefaultUser: string;
27
+ DefaultPassword: string;
28
+ LoginTimeout: number;
29
+ readonly Workspaces: Workspaces;
30
+ readonly Errors: Errors;
31
+ Idle(Action?: any): void;
32
+ CompactDatabase(SrcName: string, DstName: string, DstLocale?: any, Options?: any, SrcLocale?: any): void;
33
+ RepairDatabase(Name: string): void;
34
+ RegisterDatabase(Dsn: string, Driver: string, Silent: boolean, Attributes: string): void;
35
+ OpenDatabase(Name: string, Options?: any, ReadOnly?: any, Connect?: any): Database;
36
+ CreateDatabase(Name: string, Locale: string, Option?: any): Database;
37
+ BeginTrans(): void;
38
+ CommitTrans(Option?: number): void;
39
+ Rollback(): void;
40
+ ISAMStats(StatNum: number, Reset?: any): number;
41
+ SystemDB: string;
42
+ CreateWorkspace(Name: string, UserName: string, Password: string, UseType?: any): Workspace;
43
+ OpenConnection(Name: string, Options?: any, ReadOnly?: any, Connect?: any): Connection;
44
+ DefaultType: number;
45
+ SetOption(Option: number, Value: any): void;
46
+ }
47
+ interface Workspaces{
48
+ Item(Item: any): Workspace;
49
+ }
50
+ interface Workspace{
51
+ Name: string;
52
+ readonly UserName: string;
53
+ IsolateODBCTrans: number;
54
+ readonly Databases: Databases;
55
+ readonly Users: Users;
56
+ readonly Groups: Groups;
57
+ BeginTrans(): void;
58
+ CommitTrans(Options?: number): void;
59
+ Close(): void;
60
+ Rollback(): void;
61
+ OpenDatabase(Name: string, Options?: any, ReadOnly?: any, Connect?: any): Database;
62
+ CreateDatabase(Name: string, Connect: string, Option?: any): Database;
63
+ CreateUser(Name?: any, PID?: any, Password?: any): User;
64
+ CreateGroup(Name?: any, PID?: any): Group;
65
+ OpenConnection(Name: string, Options?: any, ReadOnly?: any, Connect?: any): Connection;
66
+ LoginTimeout: number;
67
+ DefaultCursorDriver: number;
68
+ readonly hEnv: number;
69
+ readonly Type: number;
70
+ readonly Connections: Connections;
71
+ }
72
+ interface Databases{
73
+ Item(Item: any): Database;
74
+ }
75
+ interface Database{
76
+ readonly CollatingOrder: number;
77
+ readonly Name: string;
78
+ QueryTimeout: number;
79
+ readonly Transactions: boolean;
80
+ readonly Updatable: boolean;
81
+ readonly Version: string;
82
+ readonly RecordsAffected: number;
83
+ readonly TableDefs: TableDefs;
84
+ readonly QueryDefs: QueryDefs;
85
+ readonly Relations: Relations;
86
+ readonly Containers: Containers;
87
+ readonly Recordsets: Recordsets;
88
+ Close(): void;
89
+ Execute(Query: string, Options?: any): void;
90
+ CreateProperty(Name?: any, Type?: any, Value?: any, DDL?: any): Property;
91
+ CreateRelation(Name?: any, Table?: any, ForeignTable?: any, Attributes?: any): Relation;
92
+ CreateTableDef(Name?: any, Attributes?: any, SourceTableName?: any, Connect?: any): TableDef;
93
+ CreateQueryDef(Name?: any, SQLText?: any): QueryDef;
94
+ readonly ReplicaID: string;
95
+ DesignMasterID: string;
96
+ Synchronize(DbPathName: string, ExchangeType?: any): void;
97
+ MakeReplica(PathName: string, Description: string, Options?: any): void;
98
+ Connect: string;
99
+ NewPassword(bstrOld: string, bstrNew: string): void;
100
+ OpenRecordset(Name: string, Type?: any, Options?: any, LockEdit?: any): Recordset;
101
+ readonly Connection: Connection;
102
+ PopulatePartial(DbPathName: string): void;
103
+ }
104
+ interface TableDefs{
105
+ Item(Item: any): TableDef;
106
+ }
107
+ interface TableDef{
108
+ Attributes: number;
109
+ Connect: string;
110
+ readonly DateCreated: any;
111
+ readonly LastUpdated: any;
112
+ Name: string;
113
+ SourceTableName: string;
114
+ readonly Updatable: boolean;
115
+ ValidationText: string;
116
+ ValidationRule: string;
117
+ readonly RecordCount: number;
118
+ readonly Fields: Fields;
119
+ readonly Indexes: Indexes;
120
+ OpenRecordset(Type?: any, Options?: any): Recordset;
121
+ RefreshLink(): void;
122
+ CreateField(Name?: any, Type?: any, Size?: any): Field;
123
+ CreateIndex(Name?: any): ndex;
124
+ CreateProperty(Name?: any, Type?: any, Value?: any, DDL?: any): Property;
125
+ readonly ConflictTable: string;
126
+ ReplicaFilter: any;
127
+ }
128
+ interface Fields{
129
+ Item(Item: any): Field;
130
+ }
131
+ interface Field{
132
+ readonly CollatingOrder: number;
133
+ Type: number;
134
+ Name: string;
135
+ Size: number;
136
+ readonly SourceField: string;
137
+ readonly SourceTable: string;
138
+ Value: any;
139
+ Attributes: number;
140
+ OrdinalPosition: number;
141
+ ValidationText: string;
142
+ ValidateOnSet: boolean;
143
+ ValidationRule: string;
144
+ DefaultValue: any;
145
+ Required: boolean;
146
+ AllowZeroLength: boolean;
147
+ readonly DataUpdatable: boolean;
148
+ ForeignName: string;
149
+ AppendChunk(Val: any): void;
150
+ GetChunk(Offset: number, Bytes: number): any;
151
+ CreateProperty(Name?: any, Type?: any, Value?: any, DDL?: any): Property;
152
+ readonly CollectionIndex: number;
153
+ readonly OriginalValue: any;
154
+ readonly VisibleValue: any;
155
+ readonly FieldSize: number;
156
+ }
157
+ interface Indexes{
158
+ Item(Item: any): ndex;
159
+ }
160
+ interface ndex{
161
+ Name: string;
162
+ readonly Foreign: boolean;
163
+ Unique: boolean;
164
+ Clustered: boolean;
165
+ Required: boolean;
166
+ IgnoreNulls: boolean;
167
+ Primary: boolean;
168
+ readonly DistinctCount: number;
169
+ Fields: any;
170
+ CreateField(Name?: any, Type?: any, Size?: any): Field;
171
+ CreateProperty(Name?: any, Type?: any, Value?: any, DDL?: any): Property;
172
+ }
173
+ interface Recordset{
174
+ readonly BOF: boolean;
175
+ Bookmark: any[];
176
+ readonly Bookmarkable: boolean;
177
+ readonly DateCreated: any;
178
+ readonly EOF: boolean;
179
+ Filter: string;
180
+ Index: string;
181
+ readonly LastModified: any[];
182
+ readonly LastUpdated: any;
183
+ LockEdits: boolean;
184
+ readonly Name: string;
185
+ readonly NoMatch: boolean;
186
+ Sort: string;
187
+ readonly Transactions: boolean;
188
+ readonly Type: number;
189
+ readonly RecordCount: number;
190
+ readonly Updatable: boolean;
191
+ readonly Restartable: boolean;
192
+ readonly ValidationText: string;
193
+ readonly ValidationRule: string;
194
+ CacheStart: any[];
195
+ CacheSize: number;
196
+ PercentPosition: number;
197
+ AbsolutePosition: number;
198
+ readonly EditMode: number;
199
+ readonly ODBCFetchCount: number;
200
+ readonly ODBCFetchDelay: number;
201
+ readonly Parent: Database;
202
+ readonly Fields: Fields;
203
+ AddNew(): void;
204
+ Close(): void;
205
+ OpenRecordset(Type?: any, Options?: any): Recordset;
206
+ Delete(): void;
207
+ Edit(): void;
208
+ FindFirst(Criteria: string): void;
209
+ FindLast(Criteria: string): void;
210
+ FindNext(Criteria: string): void;
211
+ FindPrevious(Criteria: string): void;
212
+ MoveFirst(): void;
213
+ MoveNext(): void;
214
+ MovePrevious(): void;
215
+ Seek(Comparison: string, Key1: any, Key2?: any, Key3?: any, Key4?: any, Key5?: any, Key6?: any, Key7?: any, Key8?: any, Key9?: any, Key10?: any, Key11?: any, Key12?: any, Key13?: any): void;
216
+ Clone(): Recordset;
217
+ Requery(NewQueryDef?: any): void;
218
+ Move(Rows: number, StartBookmark?: any): void;
219
+ FillCache(Rows?: any, StartBookmark?: any): void;
220
+ CopyQueryDef(): QueryDef;
221
+ GetRows(NumRows?: any): any;
222
+ Collect(Item: any, pvar?: any): void;
223
+ Cancel(): void;
224
+ NextRecordset(): boolean;
225
+ readonly hStmt: number;
226
+ readonly StillExecuting: boolean;
227
+ BatchSize: number;
228
+ readonly BatchCollisionCount: number;
229
+ readonly BatchCollisions: any;
230
+ readonly Connection: Connection;
231
+ readonly RecordStatus: number;
232
+ UpdateOptions: number;
233
+ CancelUpdate(UpdateType?: number): void;
234
+ Update(UpdateType?: number, Force?: boolean): void;
235
+ MoveLast(Options?: number): void;
236
+ }
237
+ interface QueryDef{
238
+ readonly DateCreated: any;
239
+ readonly LastUpdated: any;
240
+ Name: string;
241
+ ODBCTimeout: number;
242
+ readonly Type: number;
243
+ SQL: string;
244
+ readonly Updatable: boolean;
245
+ Connect: string;
246
+ ReturnsRecords: boolean;
247
+ readonly RecordsAffected: number;
248
+ readonly Fields: Fields;
249
+ readonly Parameters: Parameters;
250
+ Close(): void;
251
+ Execute(Options?: any): void;
252
+ CreateProperty(Name?: any, Type?: any, Value?: any, DDL?: any): Property;
253
+ OpenRecordset(Type?: any, Options?: any, LockEdit?: any): Recordset;
254
+ Cancel(): void;
255
+ readonly hStmt: number;
256
+ MaxRecords: number;
257
+ readonly StillExecuting: boolean;
258
+ CacheSize: number;
259
+ Prepare: any;
260
+ }
261
+ interface Parameters{
262
+ Item(Item: any): Parameter;
263
+ }
264
+ interface Parameter{
265
+ readonly Name: string;
266
+ Value: any;
267
+ Type: number;
268
+ Direction: number;
269
+ }
270
+ interface Connection{
271
+ readonly Name: string;
272
+ readonly Connect: string;
273
+ readonly Database: Database;
274
+ readonly hDbc: number;
275
+ QueryTimeout: number;
276
+ readonly Transactions: boolean;
277
+ readonly RecordsAffected: number;
278
+ readonly StillExecuting: boolean;
279
+ readonly Updatable: boolean;
280
+ readonly QueryDefs: QueryDefs;
281
+ readonly Recordsets: Recordsets;
282
+ Cancel(): void;
283
+ Close(): void;
284
+ CreateQueryDef(Name?: any, SQLText?: any): QueryDef;
285
+ Execute(Query: string, Options?: any): void;
286
+ OpenRecordset(Name: string, Type?: any, Options?: any, LockEdit?: any): Recordset;
287
+ }
288
+ interface QueryDefs{
289
+ Item(Item: any): QueryDef;
290
+ }
291
+ interface Recordsets{
292
+ Item(Item: any): Recordset;
293
+ }
294
+ interface Relations{
295
+ Item(Item: any): Relation;
296
+ }
297
+ interface Relation{
298
+ Name: string;
299
+ Table: string;
300
+ ForeignTable: string;
301
+ Attributes: number;
302
+ readonly Fields: Fields;
303
+ CreateField(Name?: any, Type?: any, Size?: any): Field;
304
+ PartialReplica: boolean;
305
+ }
306
+ interface Containers{
307
+ Item(Item: any): Container;
308
+ }
309
+ interface Container{
310
+ readonly Name: string;
311
+ Owner: string;
312
+ UserName: string;
313
+ Permissions: number;
314
+ Inherit: boolean;
315
+ readonly Documents: Documents;
316
+ readonly AllPermissions: number;
317
+ }
318
+ interface Documents{
319
+ Item(Item: any): Document;
320
+ }
321
+ interface Document{
322
+ readonly Name: string;
323
+ Owner: string;
324
+ readonly Container: string;
325
+ UserName: string;
326
+ Permissions: number;
327
+ readonly DateCreated: any;
328
+ readonly LastUpdated: any;
329
+ readonly AllPermissions: number;
330
+ CreateProperty(Name?: any, Type?: any, Value?: any, DDL?: any): Property;
331
+ }
332
+ interface Users{
333
+ Item(Item: any): User;
334
+ }
335
+ interface User{
336
+ Name: string;
337
+ PID: string;
338
+ Password: string;
339
+ readonly Groups: Groups;
340
+ NewPassword(bstrOld: string, bstrNew: string): void;
341
+ CreateGroup(Name?: any, PID?: any): Group;
342
+ }
343
+ interface Groups{
344
+ Item(Item: any): Group;
345
+ }
346
+ interface Group{
347
+ Name: string;
348
+ PID: string;
349
+ readonly Users: Users;
350
+ CreateUser(Name?: any, PID?: any, Password?: any): User;
351
+ }
352
+ interface Connections{
353
+ Item(Item: any): Connection;
354
+ }
355
+ interface Errors{
356
+ Item(Item: any): Error;
357
+ }
358
+ interface Error{
359
+ readonly Number: number;
360
+ readonly Source: string;
361
+ readonly Description: string;
362
+ readonly HelpFile: string;
363
+ readonly HelpContext: number;
364
+ }
365
+ interface ComplexType{
366
+ readonly Fields: Fields;
367
+ }
368
+ interface ndexFields{
369
+ Item(Item?: any): any;
370
+ }
371
+ interface Recordset2{
372
+ readonly ParentRecordset: Recordset;
373
+ }
374
+ interface Field2{
375
+ readonly ComplexType: ComplexType;
376
+ LoadFromFile(FileName: string): void;
377
+ SaveToFile(FileName: string): void;
378
+ readonly IsComplex: boolean;
379
+ AppendOnly: boolean;
380
+ Expression: string;
381
+ }
382
+ interface Field3{
383
+ Precision: number;
384
+ Scale: number;
385
+ }