Skip to content

Commit

Permalink
Change derby property type to Derby base class
Browse files Browse the repository at this point in the history
  • Loading branch information
craigbeck committed Apr 25, 2024
1 parent 1a45fdc commit b84cdd7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/App.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { util } from 'racer';

import * as components from './components';
import { type ComponentConstructor, type SingletonComponentConstructor } from './components';
import { type DerbyForClient } from './Derby';
import { type Derby } from './Derby';
import { PageForClient, type Page } from './Page';
import { PageParams, routes } from './routes';
import * as derbyTemplates from './templates';
Expand Down Expand Up @@ -62,7 +62,7 @@ type Routes = [string, string, any][];
*/

export abstract class App extends EventEmitter {
derby: DerbyForClient;
derby: Derby;
name: string;
filename: string;
scriptHash: string;
Expand Down

0 comments on commit b84cdd7

Please sign in to comment.