Skip to content

Commit

Permalink
style: 💄 remove multiline in type parameters of Slide class
Browse files Browse the repository at this point in the history
  • Loading branch information
ghaiklor committed Apr 26, 2020
1 parent 4e09ab7 commit 47f08ae
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions packages/kittik-slide/src/slide/Slide.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,7 @@ export { ShapeType, ShapeObject, ShapeOptions } from '../shape/Shapes';
export { SlideBuilder } from './SlideBuilder';
export { SlideDeclaration } from './SlideDeclaration';

export class Slide<
C extends Canvas = Canvas
> {
export class Slide <C extends Canvas = Canvas> {
public canvas: C = Canvas.create() as C;
public name = 'Untitled Slide';
public readonly shapes: Map<string, ShapeRenderable> = new Map<string, ShapeRenderable>();
Expand Down

0 comments on commit 47f08ae

Please sign in to comment.