DOMElement.d.ts 629 B

12345678910111213
  1. /**
  2. * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
  3. *
  4. * This source code is licensed under the MIT license found in the
  5. * LICENSE file in the root directory of this source tree.
  6. */
  7. import { Config, NewPlugin, Printer } from '../types';
  8. export declare const test: (val: any) => boolean;
  9. declare type HandledType = Element | Text | Comment | DocumentFragment;
  10. export declare const serialize: (node: HandledType, config: Config, indentation: string, depth: number, refs: any[], printer: Printer) => string;
  11. declare const plugin: NewPlugin;
  12. export default plugin;
  13. //# sourceMappingURL=DOMElement.d.ts.map