Sha256: 07e803988414ab151c3bfedf9f166e3afdcb3b0eff52a873c55747cd96196af6
Contents?: true
Size: 641 Bytes
Versions: 32
Compression:
Stored size: 641 Bytes
Contents
/** * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import type { NewPlugin } from '../types'; export declare type ReactTestObject = { $$typeof: symbol; type: string; props?: Record<string, unknown>; children?: null | Array<ReactTestChild>; }; declare type ReactTestChild = ReactTestObject | string | number; export declare const serialize: NewPlugin['serialize']; export declare const test: NewPlugin['test']; declare const plugin: NewPlugin; export default plugin;
Version data entries
32 entries across 32 versions & 2 rubygems