Skip to content

Instantly share code, notes, and snippets.

@cartant
Last active February 14, 2019 12:06
Show Gist options
  • Save cartant/c1f70265f40b24006b340f7b274a898f to your computer and use it in GitHub Desktop.
Save cartant/c1f70265f40b24006b340f7b274a898f to your computer and use it in GitHub Desktop.
interface ShareReplayConfig {
bufferSize?: number;
windowTime?: number;
refCount: boolean;
scheduler?: SchedulerLike;
}
function shareReplay<T>(config: ShareReplayConfig): MonoTypeOperatorFunction<T>;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment