/** File for types only, not actual implementation **/

export type Input<T extends object> = T & {
  onMount?(): unknown;
  onUpdate?(): unknown;
  onDestroy?(): unknown;
};
