fix(code-snippet-skeleton): CodeSnippetSkeleton can only be single or multi

This commit is contained in:
Eric Liu 2020-12-05 15:13:00 -08:00
commit 41cb74646b
4 changed files with 7 additions and 7 deletions

View file

@ -5,7 +5,7 @@ export interface CodeSnippetSkeletonProps extends svelte.JSX.HTMLAttributes<HTML
* Set the type of code snippet
* @default "single"
*/
type?: "single" | "inline" | "multi";
type?: "single" | "multi";
}
export default class CodeSnippetSkeleton {