OpenC3/cosmos

View on GitHub
openc3/templates/tool_angular/src/single-spa/single-spa-props.ts

Summary

Maintainability
A
0 mins
Test Coverage
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; // & {};