Skip to content

Commit 53509a8

Browse files
committed
docs: add JSDoc to CssSyntaxError class
Add minimal JSDoc documentation to satisfy docstring coverage requirement for the exported CssSyntaxError class.
1 parent d9d5ea3 commit 53509a8

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

packages/tailwindcss/src/css-parser.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ export interface ParseOptions {
3737
from?: string
3838
}
3939

40+
/**
41+
* CSS syntax error with source location information.
42+
*/
4043
export class CssSyntaxError extends Error {
4144
constructor(message: string, source: Source | null, position: number) {
4245
if (!source) {

0 commit comments

Comments
 (0)