Test/node_modules/tunnel-rat/dist/index.d.ts
2026-04-09 22:54:00 +07:00

9 lines
201 B
TypeScript

import React from 'react';
declare type Props = {
children: React.ReactNode;
};
export default function tunnel(): {
In: ({ children }: Props) => null;
Out: () => JSX.Element;
};
export {};