/** * ***Brief*** * A value that can either be resolved immediately or asynchronously. */ export type MaybeAsync = Promise | T1;