mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-08-11 20:40:20 +00:00
Merge branch 'master' into webpack-hot-client-valid-targets
This commit is contained in:
@@ -29,6 +29,40 @@ management
|
||||
// Handle the error.
|
||||
});
|
||||
|
||||
// Search users without paging - callback style
|
||||
management.getUsers({search_engine: 'v3', q: 'name:"jane"', per_page: 25}, (err: Error, users: auth0.User[]) => {
|
||||
if (err) {
|
||||
// Handle error
|
||||
}
|
||||
console.log(users);
|
||||
});
|
||||
|
||||
// Search users without paging - promise style
|
||||
management.getUsers({search_engine: 'v3', q: 'name:"jane"', per_page: 25})
|
||||
.then((users) => {
|
||||
console.log(users);
|
||||
})
|
||||
.catch((err) => {
|
||||
// Handle the error
|
||||
});
|
||||
|
||||
// Search users with paging - callback style
|
||||
management.getUsers({search_engine: 'v3', q: 'name:"jane"', per_page: 25, include_totals: true}, (err: Error, userPage: auth0.UserPage) => {
|
||||
if (err) {
|
||||
// Handle error
|
||||
}
|
||||
console.log(userPage.total);
|
||||
});
|
||||
|
||||
// Search users with paging - promise style
|
||||
management.getUsers({search_engine: 'v3', q: 'name:"jane"', per_page: 25, include_totals: true})
|
||||
.then((users: auth0.UserPage) => {
|
||||
console.log(users.total);
|
||||
})
|
||||
.catch((err) => {
|
||||
// Handle the error
|
||||
});
|
||||
|
||||
// Using a callback.
|
||||
management.getUser({id: 'user_id'},(err: Error, user: auth0.User) => {
|
||||
if (err) {
|
||||
|
||||
Vendored
+20
-4
@@ -1,4 +1,4 @@
|
||||
// Type definitions for auth0 2.9.1
|
||||
// Type definitions for auth0 2.9.2
|
||||
// Project: https://github.com/auth0/node-auth0
|
||||
// Definitions by: Wilson Hobbs <https://github.com/wbhob>, Seth Westphal <https://github.com/westy92>, Amiram Korach <https://github.com/amiram>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
@@ -68,7 +68,6 @@ export interface UpdateUserData extends UserData {
|
||||
export interface GetUsersData {
|
||||
per_page?: number;
|
||||
page?: number;
|
||||
include_totals?: boolean;
|
||||
sort?: string;
|
||||
connection?: string;
|
||||
fields?: string;
|
||||
@@ -77,6 +76,10 @@ export interface GetUsersData {
|
||||
search_engine?: string;
|
||||
}
|
||||
|
||||
export interface GetUsersDataPaged extends GetUsersData {
|
||||
include_totals: boolean;
|
||||
}
|
||||
|
||||
export interface Rule {
|
||||
/**
|
||||
* The name of the rule.
|
||||
@@ -345,6 +348,17 @@ export interface User {
|
||||
family_name?: string;
|
||||
}
|
||||
|
||||
export interface Page {
|
||||
start: number;
|
||||
limit: number;
|
||||
length: number;
|
||||
total: number;
|
||||
}
|
||||
|
||||
export interface UserPage extends Page {
|
||||
users: User[];
|
||||
}
|
||||
|
||||
export interface Identity {
|
||||
connection: string;
|
||||
user_id: string;
|
||||
@@ -353,7 +367,7 @@ export interface Identity {
|
||||
access_token?: string;
|
||||
profileData?: {
|
||||
email?: string;
|
||||
email_verified?: boolean;
|
||||
email_verified?: boolean;
|
||||
name?: string;
|
||||
phone_number?: string;
|
||||
phone_verified?: boolean;
|
||||
@@ -662,7 +676,7 @@ export class ManagementClient {
|
||||
deleteClient(params: ClientParams): Promise<void>;
|
||||
deleteClient(params: ClientParams, cb: (err: Error) => void): void;
|
||||
|
||||
|
||||
|
||||
// Client Grants
|
||||
getClientGrants(): Promise<ClientGrant[]>;
|
||||
getClientGrants(cb: (err: Error, data: ClientGrant[]) => void): void;
|
||||
@@ -706,6 +720,8 @@ export class ManagementClient {
|
||||
|
||||
|
||||
// Users
|
||||
getUsers(params: GetUsersDataPaged): Promise<UserPage>;
|
||||
getUsers(params: GetUsersDataPaged, cb: (err: Error, userPage: UserPage) => void): void;
|
||||
getUsers(params?: GetUsersData): Promise<User[]>;
|
||||
getUsers(cb: (err: Error, users: User[]) => void): void;
|
||||
getUsers(params?: GetUsersData, cb?: (err: Error, users: User[]) => void): void;
|
||||
|
||||
@@ -0,0 +1,39 @@
|
||||
import * as express from 'express'
|
||||
import session = require('express-session')
|
||||
import connectMongo = require('connect-mongodb-session')
|
||||
let MongoDBStore = connectMongo(session)
|
||||
|
||||
var app = express();
|
||||
var store = new MongoDBStore({
|
||||
uri: 'mongodb://localhost:27017/connect_mongodb_session_test',
|
||||
collection: 'mySessions'
|
||||
}, function(error) {
|
||||
// some connection error occur
|
||||
});
|
||||
|
||||
store.on('connected', function() {
|
||||
store.client; // The underlying MongoClient object from the MongoDB driver
|
||||
});
|
||||
|
||||
// Catch errors
|
||||
store.on('error', function(error) {
|
||||
});
|
||||
|
||||
app.use(require('express-session')({
|
||||
secret: 'This is a secret',
|
||||
cookie: {
|
||||
maxAge: 1000 * 60 * 60 * 24 * 7 // 1 week
|
||||
},
|
||||
store: store,
|
||||
// Boilerplate options, see:
|
||||
// * https://www.npmjs.com/package/express-session#resave
|
||||
// * https://www.npmjs.com/package/express-session#saveuninitialized
|
||||
resave: true,
|
||||
saveUninitialized: true
|
||||
}));
|
||||
|
||||
app.get('/', function(req, res) {
|
||||
res.send('Hello ' + JSON.stringify(req.session));
|
||||
});
|
||||
|
||||
const server = app.listen(3000);
|
||||
+31
@@ -0,0 +1,31 @@
|
||||
// Type definitions for connect-mongodb-session
|
||||
// Project: https://github.com/kcbanner/connect-mongodb-session
|
||||
// Definitions by: Nattapong Sirilappanich <https://github.com/NattapongSiri>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 2.3
|
||||
|
||||
/// <reference types="express-session" />
|
||||
|
||||
import session = require('express-session');
|
||||
import * as express from 'express';
|
||||
import {MongoClient, MongoClientOptions} from 'mongodb'
|
||||
|
||||
declare function connect(fn : (options?: session.SessionOptions) => express.RequestHandler) : connectMongodbSession.MongoDBStore
|
||||
|
||||
declare namespace connectMongodbSession {
|
||||
export interface MongoDBStore extends session.Store {
|
||||
client : MongoClient
|
||||
new(connection?: ConnectionInfo, callback?: (error : Error) => void) : MongoDBStore
|
||||
}
|
||||
|
||||
export interface ConnectionInfo {
|
||||
idField? : string
|
||||
collection : string
|
||||
connectionOptions?: MongoClientOptions
|
||||
databaseName?: string
|
||||
expires?: number
|
||||
uri : string
|
||||
}
|
||||
}
|
||||
|
||||
export = connect
|
||||
@@ -0,0 +1,27 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"baseUrl": "../",
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"lib": [
|
||||
"es6"
|
||||
],
|
||||
"module": "commonjs",
|
||||
"noEmit": true,
|
||||
"noImplicitAny": true,
|
||||
"noImplicitThis": true,
|
||||
"strictNullChecks": false,
|
||||
"strictFunctionTypes": true,
|
||||
"typeRoots": [
|
||||
"../"
|
||||
],
|
||||
"types": [
|
||||
]
|
||||
},
|
||||
"files": [
|
||||
"connect-mongodb-session-tests.ts",
|
||||
"index.d.ts"
|
||||
],
|
||||
"exclude": [
|
||||
"node_modules"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,79 @@
|
||||
{
|
||||
"extends": "dtslint/dt.json",
|
||||
"rules": {
|
||||
"adjacent-overload-signatures": false,
|
||||
"array-type": false,
|
||||
"arrow-return-shorthand": false,
|
||||
"ban-types": false,
|
||||
"callable-types": false,
|
||||
"comment-format": false,
|
||||
"dt-header": false,
|
||||
"eofline": false,
|
||||
"export-just-namespace": false,
|
||||
"import-spacing": false,
|
||||
"interface-name": false,
|
||||
"interface-over-type-literal": false,
|
||||
"jsdoc-format": false,
|
||||
"max-line-length": false,
|
||||
"member-access": false,
|
||||
"new-parens": false,
|
||||
"no-any-union": false,
|
||||
"no-boolean-literal-compare": false,
|
||||
"no-conditional-assignment": false,
|
||||
"no-consecutive-blank-lines": false,
|
||||
"no-construct": false,
|
||||
"no-declare-current-package": false,
|
||||
"no-duplicate-imports": false,
|
||||
"no-duplicate-variable": false,
|
||||
"no-empty-interface": false,
|
||||
"no-for-in-array": false,
|
||||
"no-inferrable-types": false,
|
||||
"no-internal-module": false,
|
||||
"no-irregular-whitespace": false,
|
||||
"no-mergeable-namespace": false,
|
||||
"no-misused-new": false,
|
||||
"no-namespace": false,
|
||||
"no-object-literal-type-assertion": false,
|
||||
"no-padding": false,
|
||||
"no-redundant-jsdoc": false,
|
||||
"no-redundant-jsdoc-2": false,
|
||||
"no-redundant-undefined": false,
|
||||
"no-reference-import": false,
|
||||
"no-relative-import-in-test": false,
|
||||
"no-self-import": false,
|
||||
"no-single-declare-module": false,
|
||||
"no-string-throw": false,
|
||||
"no-unnecessary-callback-wrapper": false,
|
||||
"no-unnecessary-class": false,
|
||||
"no-unnecessary-generics": false,
|
||||
"no-unnecessary-qualifier": false,
|
||||
"no-unnecessary-type-assertion": false,
|
||||
"no-useless-files": false,
|
||||
"no-var-keyword": false,
|
||||
"no-var-requires": false,
|
||||
"no-void-expression": false,
|
||||
"no-trailing-whitespace": false,
|
||||
"object-literal-key-quotes": false,
|
||||
"object-literal-shorthand": false,
|
||||
"one-line": false,
|
||||
"one-variable-per-declaration": false,
|
||||
"only-arrow-functions": false,
|
||||
"prefer-conditional-expression": false,
|
||||
"prefer-const": false,
|
||||
"prefer-declare-function": false,
|
||||
"prefer-for-of": false,
|
||||
"prefer-method-signature": false,
|
||||
"prefer-template": false,
|
||||
"radix": false,
|
||||
"semicolon": false,
|
||||
"space-before-function-paren": false,
|
||||
"space-within-parens": false,
|
||||
"strict-export-declare-modifiers": false,
|
||||
"trim-file": false,
|
||||
"triple-equals": false,
|
||||
"typedef-whitespace": false,
|
||||
"unified-signatures": false,
|
||||
"void-return": false,
|
||||
"whitespace": false
|
||||
}
|
||||
}
|
||||
+3
-3
@@ -8,7 +8,7 @@ import { Application } from '@feathersjs/feathers';
|
||||
import { Request } from 'express';
|
||||
import * as self from '@feathersjs/authentication-jwt';
|
||||
|
||||
declare const feathersAuthenticationJwt: ((options?: FeathersAuthenticationJWTOptions) => () => void) & typeof self;
|
||||
declare const feathersAuthenticationJwt: ((options?: Partial<FeathersAuthenticationJWTOptions>) => () => void) & typeof self;
|
||||
export default feathersAuthenticationJwt;
|
||||
|
||||
export interface FeathersAuthenticationJWTOptions {
|
||||
@@ -43,10 +43,10 @@ export interface FeathersAuthenticationJWTOptions {
|
||||
/**
|
||||
* A Verifier class. Defaults to the built-in one but can be a custom one. See below for details.
|
||||
*/
|
||||
Verifier: JWTVerifier;
|
||||
Verifier: typeof Verifier;
|
||||
}
|
||||
|
||||
export class JWTVerifier {
|
||||
export class Verifier {
|
||||
constructor(app: Application, options: any); // the class constructor
|
||||
|
||||
verify(req: Request, payload: any, done: (error: any, user?: any, info?: any) => void): void;
|
||||
|
||||
Vendored
+6
-6
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -66,7 +66,7 @@ declare class Class_Buffer extends Class__object {
|
||||
*
|
||||
*
|
||||
*/
|
||||
constructor(datas: TypedArray);
|
||||
constructor(datas: ArrayLike<any>);
|
||||
|
||||
/**
|
||||
*
|
||||
@@ -1043,7 +1043,7 @@ declare class Class_Buffer extends Class__object {
|
||||
*
|
||||
*
|
||||
*/
|
||||
keys(): Object;
|
||||
keys(): Iterable<any>;
|
||||
|
||||
/**
|
||||
*
|
||||
@@ -1053,7 +1053,7 @@ declare class Class_Buffer extends Class__object {
|
||||
*
|
||||
*
|
||||
*/
|
||||
values(): Object;
|
||||
values(): Iterable<any>;
|
||||
|
||||
/**
|
||||
*
|
||||
@@ -1077,7 +1077,7 @@ declare class Class_Buffer extends Class__object {
|
||||
*
|
||||
*
|
||||
*/
|
||||
entries(): Object;
|
||||
entries(): Iterable<any>;
|
||||
|
||||
/**
|
||||
*
|
||||
@@ -1126,6 +1126,6 @@ declare class Class_Buffer extends Class__object {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -139,6 +139,6 @@ declare class Class_BufferedStream extends Class_Stream {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -58,6 +58,6 @@ declare class Class_Chain extends Class_Handler {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -144,6 +144,6 @@ declare class Class_Cipher extends Class__object {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -70,6 +70,6 @@ declare class Class_Condition extends Class_Lock {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -114,6 +114,6 @@ declare class Class_DbConnection extends Class__object {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -175,6 +175,6 @@ declare class Class_DgramSocket extends Class_EventEmitter {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -72,6 +72,6 @@ declare class Class_Digest extends Class__object {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -80,6 +80,6 @@ declare class Class_Event extends Class_Lock {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -306,6 +306,6 @@ declare class Class_EventEmitter extends Class__object {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -76,6 +76,6 @@ declare class Class_EventInfo extends Class__object {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -72,6 +72,6 @@ declare class Class_Fiber extends Class__object {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -62,6 +62,6 @@ declare class Class_File extends Class_SeekableStream {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -69,6 +69,6 @@ declare class Class_Handler extends Class__object {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -85,6 +85,6 @@ declare class Class_HandlerEx extends Class_Handler {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -92,6 +92,6 @@ declare class Class_HeapGraphEdge extends Class__object {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -115,6 +115,6 @@ declare class Class_HeapGraphNode extends Class__object {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -96,6 +96,6 @@ declare class Class_HeapSnapshot extends Class__object {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -253,6 +253,6 @@ declare class Class_HttpClient extends Class__object {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -121,6 +121,6 @@ declare class Class_HttpCollection extends Class__object {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -155,6 +155,6 @@ declare class Class_HttpCookie extends Class__object {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -96,6 +96,6 @@ declare class Class_HttpHandler extends Class_HandlerEx {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -197,6 +197,6 @@ declare class Class_HttpMessage extends Class_Message {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -120,6 +120,6 @@ declare class Class_HttpRequest extends Class_HttpMessage {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -125,6 +125,6 @@ declare class Class_HttpResponse extends Class_HttpMessage {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -157,6 +157,6 @@ declare class Class_HttpServer extends Class_TcpServer {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -76,6 +76,6 @@ declare class Class_HttpUploadData extends Class__object {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -132,6 +132,6 @@ declare class Class_HttpsServer extends Class_HttpServer {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -851,6 +851,6 @@ declare class Class_Image extends Class__object {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -236,6 +236,6 @@ declare class Class_Int64 extends Class__object {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -171,6 +171,6 @@ declare class Class_LevelDB extends Class__object {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -74,6 +74,6 @@ declare class Class_Lock extends Class__object {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -158,6 +158,6 @@ declare class Class_LruCache extends Class_EventEmitter {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -38,6 +38,6 @@ declare class Class_MSSQL extends Class_DbConnection {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -64,6 +64,6 @@ declare class Class_MemoryStream extends Class_SeekableStream {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -230,6 +230,6 @@ declare class Class_Message extends Class__object {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -222,6 +222,6 @@ declare class Class_MongoCollection extends Class__object {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -144,6 +144,6 @@ declare class Class_MongoCursor extends Class__object {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -81,6 +81,6 @@ declare class Class_MongoDB extends Class__object {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -28,6 +28,6 @@ declare class Class_MongoID extends Class__object {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -62,6 +62,6 @@ declare class Class_MySQL extends Class_DbConnection {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -350,6 +350,6 @@ declare class Class_PKey extends Class__object {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -571,6 +571,6 @@ declare class Class_Redis extends Class__object {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -164,6 +164,6 @@ declare class Class_RedisHash extends Class__object {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -169,6 +169,6 @@ declare class Class_RedisList extends Class__object {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -124,6 +124,6 @@ declare class Class_RedisSet extends Class__object {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -153,6 +153,6 @@ declare class Class_RedisSortedSet extends Class__object {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -257,6 +257,6 @@ declare class Class_Routing extends Class_Handler {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -61,6 +61,6 @@ declare class Class_SQLite extends Class_DbConnection {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -172,6 +172,6 @@ declare class Class_SandBox extends Class__object {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -107,6 +107,6 @@ declare class Class_SeekableStream extends Class_Stream {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -64,6 +64,6 @@ declare class Class_Semaphore extends Class_Lock {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -171,6 +171,6 @@ declare class Class_Service extends Class_EventEmitter {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -141,6 +141,6 @@ declare class Class_Smtp extends Class__object {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -227,6 +227,6 @@ declare class Class_Socket extends Class_Stream {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -101,6 +101,6 @@ declare class Class_SslHandler extends Class_Handler {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -132,6 +132,6 @@ declare class Class_SslServer extends Class_TcpServer {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -134,6 +134,6 @@ declare class Class_SslSocket extends Class_Stream {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -214,6 +214,6 @@ declare class Class_Stat extends Class__object {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -98,6 +98,6 @@ declare class Class_Stats extends Class__object {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -77,6 +77,6 @@ declare class Class_Stream extends Class__object {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -141,6 +141,6 @@ declare class Class_StringDecoder extends Class__object {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -98,6 +98,6 @@ declare class Class_SubProcess extends Class_BufferedStream {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -122,6 +122,6 @@ declare class Class_TcpServer extends Class__object {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -68,6 +68,6 @@ declare class Class_Timer extends Class__object {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -274,6 +274,6 @@ declare class Class_UrlObject extends Class__object {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -187,6 +187,6 @@ declare class Class_WebSocket extends Class_EventEmitter {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -79,6 +79,6 @@ declare class Class_WebSocketMessage extends Class_Message {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -167,6 +167,6 @@ declare class Class_WebView extends Class_EventEmitter {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -61,6 +61,6 @@ declare class Class_Worker extends Class_EventEmitter {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -258,6 +258,6 @@ declare class Class_X509Cert extends Class__object {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -85,6 +85,6 @@ declare class Class_X509Crl extends Class__object {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -150,6 +150,6 @@ declare class Class_X509Req extends Class__object {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -119,6 +119,6 @@ declare class Class_XmlAttr extends Class__object {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -28,6 +28,6 @@ declare class Class_XmlCDATASection extends Class_XmlText {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -110,6 +110,6 @@ declare class Class_XmlCharacterData extends Class_XmlNode {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -28,6 +28,6 @@ declare class Class_XmlComment extends Class_XmlCharacterData {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -285,6 +285,6 @@ declare class Class_XmlDocument extends Class_XmlNode {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -67,6 +67,6 @@ declare class Class_XmlDocumentType extends Class_XmlNode {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -296,6 +296,6 @@ declare class Class_XmlElement extends Class_XmlNode {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -63,6 +63,6 @@ declare class Class_XmlNamedNodeMap extends Class__object {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -310,6 +310,6 @@ declare class Class_XmlNode extends Class__object {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -52,6 +52,6 @@ declare class Class_XmlNodeList extends Class__object {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -54,6 +54,6 @@ declare class Class_XmlProcessingInstruction extends Class_XmlNode {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -43,6 +43,6 @@ declare class Class_XmlText extends Class_XmlCharacterData {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -163,6 +163,6 @@ declare class Class_ZipFile extends Class__object {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -100,6 +100,6 @@ declare class Class_ZmqSocket extends Class__object {
|
||||
|
||||
} /** endof class */
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+1
-1
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -789,6 +789,6 @@ declare module "assert" {
|
||||
export = assert
|
||||
}
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -234,6 +234,6 @@ declare module "base32" {
|
||||
export = base32
|
||||
}
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -235,6 +235,6 @@ declare module "base64" {
|
||||
export = base64
|
||||
}
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -245,6 +245,6 @@ declare module "base64vlq" {
|
||||
export = base64vlq
|
||||
}
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,7 +3,7 @@
|
||||
* This file was automatically generated with idlc.js *
|
||||
* build info: *
|
||||
* - fibjs : 0.25.0 *
|
||||
* - date : Jun 11 2018 14:17:22 *
|
||||
* - date : Jun 12 2018 07:22:40 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
@@ -234,6 +234,6 @@ declare module "bson" {
|
||||
export = bson
|
||||
}
|
||||
|
||||
/** } /** endof `module Or Internal Object` */
|
||||
/** endof `module Or Internal Object` */
|
||||
|
||||
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user