@terminus/ngx-tools
Version:
[![CircleCI][circle-badge]][circle-link] [![codecov][codecov-badge]][codecov-project] [![semantic-release][semantic-release-badge]][semantic-release] [![MIT License][license-image]][license-url] <br> [![NPM version][npm-version-image]][npm-url] [![Github
18 lines (17 loc) • 433 B
TypeScript
/**
* Return the native document object
*
* @returns The native document object
*/
export declare const originalDocument: () => Document;
/**
* Define a service that exposes the DOCUMENT object
*/
export declare class TsDocumentService {
/**
* Return a function that returns the native document object
*
* @returns The function that returns the native document object
*/
get document(): Document;
}