UNPKG

ng2-json-editor

Version:

Angular2 component for editing large json documents

8 lines (7 loc) 254 B
import { PipeTransform } from '@angular/core'; export declare class KeysPipe implements PipeTransform { /** * Transforms object to array of its keys (Object.keys replacement for templates) */ transform(object: object): Array<string>; }