export type Creator<T> = () => T

export type CreatorP<T> = () => Promise<T>
