diff options
Diffstat (limited to 'cli/dts')
-rw-r--r-- | cli/dts/lib.deno.window.d.ts | 4 | ||||
-rw-r--r-- | cli/dts/lib.deno.worker.d.ts | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/cli/dts/lib.deno.window.d.ts b/cli/dts/lib.deno.window.d.ts index 3eebab677..b7eca1e24 100644 --- a/cli/dts/lib.deno.window.d.ts +++ b/cli/dts/lib.deno.window.d.ts @@ -62,7 +62,7 @@ declare function confirm(message?: string): boolean; */ declare function prompt(message?: string, defaultValue?: string): string | null; -// TODO(nayeemrmn): Move this to `op_crates/web` where its implementation is. +// TODO(nayeemrmn): Move this to `extensions/web` where its implementation is. // The types there must first be split into window, worker and global types. /** The location (URL) of the object it is linked to. Changes done on it are * reflected on the object it relates to. Accessible via @@ -130,6 +130,6 @@ declare class Location { replace(url: string): void; } -// TODO(nayeemrmn): Move this to `op_crates/web` where its implementation is. +// TODO(nayeemrmn): Move this to `extensions/web` where its implementation is. // The types there must first be split into window, worker and global types. declare var location: Location; diff --git a/cli/dts/lib.deno.worker.d.ts b/cli/dts/lib.deno.worker.d.ts index 653a8931b..1d1b08a5f 100644 --- a/cli/dts/lib.deno.worker.d.ts +++ b/cli/dts/lib.deno.worker.d.ts @@ -71,7 +71,7 @@ declare var close: () => void; declare var name: string; declare var postMessage: (message: any) => void; -// TODO(nayeemrmn): Move this to `op_crates/web` where its implementation is. +// TODO(nayeemrmn): Move this to `extensions/web` where its implementation is. // The types there must first be split into window, worker and global types. /** The absolute location of the script executed by the Worker. Such an object * is initialized for each worker and is available via the @@ -90,6 +90,6 @@ declare class WorkerLocation { readonly search: string; } -// TODO(nayeemrmn): Move this to `op_crates/web` where its implementation is. +// TODO(nayeemrmn): Move this to `extensions/web` where its implementation is. // The types there must first be split into window, worker and global types. declare var location: WorkerLocation; |