Introducing Custom Annotations with `S.annotations` in Effect Typescript

Is there a go-to method to introduce custom annotations so it plays ball with S.annotations function?
I wanna do something like this
S.String.pipe(S.annotations({
  myAnnotation: [1,2,3] // rather than [MyAnnotation]: [1,2,3]
}))

Should I recreate it with my own Annotations type?
Was this page helpful?