Skip to content

Commit

Permalink
update component registry typings
Browse files Browse the repository at this point in the history
  • Loading branch information
evs-chris committed Mar 14, 2024
1 parent 1520abe commit 16ee82b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions typings/ractive.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1112,7 +1112,7 @@ export interface InitOpts<T extends Ractive<T> = Ractive> extends BaseInitOpts<T

export interface Registries<T extends Ractive<T>> {
adaptors: Registry<Adaptor>;
components: Registry<Component>;
components: Registry<CanComponent>;
decorators: Registry<Decorator<T>>;
easings: Registry<Easing>;
events: Registry<Event>;
Expand All @@ -1133,7 +1133,7 @@ export interface Static<T extends Ractive<T> = Ractive> {
defaults: Registries<T> & ValueMap;

adaptors: Registry<Adaptor>;
components: Registry<Component>;
components: Registry<CanComponent>;
css?: string|CssFn;
decorators: Registry<Decorator<T>>;
easings: Registry<Easing>;
Expand Down Expand Up @@ -1616,7 +1616,7 @@ export class Ractive<T extends Ractive<T> = Ractive<any>> implements PropertyOpt
static defaults: Registries<Ractive>;

static adaptors: Registry<Adaptor>;
static components: Registry<Component>;
static components: Registry<CanComponent>;
static decorators: Registry<Decorator>;
static easings: Registry<Easing>;
static events: Registry<EventPlugin>;
Expand Down

0 comments on commit 16ee82b

Please sign in to comment.