/** * Accesses an `Annotations` instance in the environment and retrieves the * annotation of the specified type, or its default value if there is none. * * @tsplus static effect/core/testing/Annotations.Ops get */ export function get(key: TestAnnotation): Effect { return Effect.serviceWithEffect( Annotations.Tag, (annotations) => annotations.get(key) ) }