qiankun-fit/examples/angular9/src/single-spa/single-spa-props.ts
2020-08-21 15:07:24 +08:00

9 lines
333 B
TypeScript

import { ReplaySubject } from 'rxjs';
import { AppProps } from 'single-spa';
export const singleSpaPropsSubject = new ReplaySubject<SingleSpaProps>(1);
// Add any custom single-spa props you have to this type def
// https://single-spa.js.org/docs/building-applications.html#custom-props
export type SingleSpaProps = AppProps & {};