File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -305,8 +305,12 @@ export type OnRenderFn<PROPS> = (props: PROPS) => JSXNode<any> | null | (() => J
305305// @alpha
306306export const pauseContainer: (elmOrDoc : Element | Document , defaultParentJSON ? : Element ) => Promise <SnapshotResult >;
307307
308- // Warning: (ae-forgotten-export) The symbol "PropFnInterface" needs to be exported by the entry point index.d.ts
309- //
308+ // @public (undocumented)
309+ export interface PropFnInterface <ARGS extends any [], RET > {
310+ // (undocumented)
311+ (... args : ARGS ): Promise <RET >;
312+ }
313+
310314// @public (undocumented)
311315export type PropFunction <T extends Function > = T extends (... args : infer ARGS ) => infer RET ? PropFnInterface <ARGS , RET > : never ;
312316
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ export type { SnapshotState, SnapshotResult } from './object/store';
2222//////////////////////////////////////////////////////////////////////////////////////////
2323export { $ } from './import/qrl.public' ;
2424export { qrl , inlinedQrl } from './import/qrl' ;
25- export type { QRL , PropFunction } from './import/qrl.public' ;
25+ export type { QRL , PropFunction , PropFnInterface } from './import/qrl.public' ;
2626export type { Props } from './props/props.public' ;
2727export { implicit$FirstArg } from './util/implicit_dollar' ;
2828
You can’t perform that action at this time.
0 commit comments