Skip to content
This repository has been archived by the owner on Dec 13, 2021. It is now read-only.

Commit

Permalink
refactor: make props optional
Browse files Browse the repository at this point in the history
  • Loading branch information
d-koppenhagen committed Aug 13, 2020
1 parent 500c7a3 commit 570ed3b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions projects/scully-plugin-toc/src/lib/interfaces.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export type Level = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6';

export interface TocConfig {
blogAreaSelector: string;
insertSelector: string;
level: Level[];
blogAreaSelector?: string;
insertSelector?: string;
level?: Level[];
}

0 comments on commit 570ed3b

Please sign in to comment.