Rename domain-tasks to domain-task

This commit is contained in:
SteveSandersonMS
2016-02-08 18:20:23 -08:00
parent 4312d6e28c
commit 32349fa85b
7 changed files with 11 additions and 11 deletions

View File

@@ -0,0 +1,10 @@
// TODO: Move this on to definitelytyped, and take a dependency on whatwg-fetch
// so that the 'fetch' function can have the correct type args
declare module 'domain-task' {
function addTask(task: PromiseLike<any>): void;
}
declare module 'domain-task/fetch' {
function fetch(url, options?): Promise<any>;
}