mirror of
https://github.com/denoland/deno.git
synced 2024-12-03 17:08:35 -05:00
13 lines
327 B
TypeScript
13 lines
327 B
TypeScript
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
||
|
|
||
|
import { PermissionsImpl as Permissions } from "./permissions.ts";
|
||
|
|
||
|
export class NavigatorImpl implements Navigator {
|
||
|
permissions = new Permissions();
|
||
|
}
|
||
|
|
||
|
Object.defineProperty(NavigatorImpl, "name", {
|
||
|
value: "Navigator",
|
||
|
configurable: true,
|
||
|
});
|