mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* Add a definition of atlassian-crowd-client * [atlassian-crowd-client] Fix a wrong definition. * Add `"strictFunctionTypes": true` * [atlassian-crowd-client] Fix a compile error. * [atlassian-crowd-client] Use `export =` instead of `export default`. * Use `export =` instead of `export default` * Use `import = require`
11 lines
248 B
TypeScript
11 lines
248 B
TypeScript
import { Settings } from "./settings";
|
|
|
|
declare class CrowdApi {
|
|
settings: Settings;
|
|
constructor(settings: Settings);
|
|
request(method: string, path: string, data?: any): Promise<any>;
|
|
log(...args: any[]): void;
|
|
}
|
|
|
|
export = CrowdApi;
|