https://github.com/angular/angular
Raw File
Tip revision: 56e085f3f840290440a7fc32911160c21f231ba5 authored by Kristiyan Kostadinov on 10 October 2023, 16:57:09 UTC
build: remove Windows CI check (#52140) (#55527)
Tip revision: 56e085f
web-worker-message.ts
export interface WebWorkerMessage {
  type: string;
  payload: any;
  id?: number;
}
back to top