Extend Chrome TypeScript type (#21076) (#21172)

This commit is contained in:
Felix Stürmer 2018-07-24 22:53:39 +02:00 committed by GitHub
parent 44aa34e4f4
commit 530b9adedf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -19,6 +19,8 @@
declare class Chrome {
public addBasePath<T = string>(path: T): T;
public getBasePath(): string;
public getXsrfToken(): string;
}
declare const chrome: Chrome;