Hyperlinkv0.8.0-beta.28

Process

Source src/Process.ts:27627 lines
export const scheduleLayer = <Self>(
  tag: HyperlinkTag<Self, ScheduleHyperlinkSpec>,
  options?: { readonly initial?: ReadonlyArray<ScheduleWindow> },
): Layer.Layer<Self | Local<Self>> =>
  Layer.unwrap(
    Effect.map(buildScheduleImpl(options), (impl) => Hyperlink.layer(tag, impl)),
  );