mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
40 lines
1.2 KiB
TypeScript
40 lines
1.2 KiB
TypeScript
// Type definitions for AngularJS HTML5 Fullscreen v1.0.1
|
|
// Project: https://github.com/fabiobiondi/angular-fullscreen
|
|
// Definitions by: Julien Paroche <https://github.com/julienpa>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/angular-fullscreen
|
|
// TypeScript Version: 2.3
|
|
|
|
/// <reference types="angular" />
|
|
|
|
import * as angular from 'angular';
|
|
|
|
declare module 'angular' {
|
|
export namespace fullscreen {
|
|
|
|
/**
|
|
* Prefixing interface name with "I" is not recommended: http://www.typescriptlang.org/Handbook#writing-dts-files
|
|
* However, we let it here to keep consistency with all the other Angular-related definitions
|
|
*/
|
|
interface IFullscreen {
|
|
// enable document fullscreen
|
|
all(): void;
|
|
|
|
// enable or disable the document fullscreen
|
|
toggleAll(): void;
|
|
|
|
// enable fullscreen to a specific element
|
|
enable(element: Element|HTMLElement): void;
|
|
|
|
// disable fullscreen
|
|
cancel(): void;
|
|
|
|
// return true if fullscreen is enabled, otherwise false
|
|
isEnabled(): boolean;
|
|
|
|
// return true if fullscreen API is supported by your browser
|
|
isSupported(): boolean;
|
|
}
|
|
}
|
|
|
|
}
|