@@ -49,7 +49,7 @@ const {
4949 * @property {boolean= } ignoreOrder true when need to ignore order, otherwise false
5050 * @property {string | ((linkTag: HTMLLinkElement) => void)= } insert link insert place or a custom insert function
5151 * @property {Record<string, string>= } attributes link attributes
52- * @property {string | false | ' text/css' = } linkType value of a link type attribute
52+ * @property {string | false | " text/css" = } linkType value of a link type attribute
5353 * @property {boolean= } runtime true when need to generate runtime code, otherwise false
5454 * @property {boolean= } experimentalUseImportModule true when need to use `experimentalUseImportModule` API, otherwise false
5555 */
@@ -61,15 +61,15 @@ const {
6161 * @property {boolean } ignoreOrder true when need to ignore order, otherwise false
6262 * @property {string | ((linkTag: HTMLLinkElement) => void)= } insert a link insert place or a custom insert function
6363 * @property {Record<string, string>= } attributes link attributes
64- * @property {string | false | ' text/css' = } linkType value of a link type attribute
64+ * @property {string | false | " text/css" = } linkType value of a link type attribute
6565 * @property {boolean } runtime true when need to generate runtime code, otherwise false
6666 * @property {boolean= } experimentalUseImportModule true when need to use `experimentalUseImportModule` API, otherwise false
6767 */
6868
6969/**
7070 * @typedef {object } RuntimeOptions
7171 * @property {string | ((linkTag: HTMLLinkElement) => void)= } insert a link insert place or a custom insert function
72- * @property {string | false | ' text/css' } linkType value of a link type attribute
72+ * @property {string | false | " text/css" } linkType value of a link type attribute
7373 * @property {Record<string, string>= } attributes link attributes
7474 */
7575
@@ -90,12 +90,12 @@ const CODE_GENERATION_RESULT = {
9090} ;
9191
9292// eslint-disable-next-line jsdoc/reject-any-type
93- /** @typedef {{ context: string | null, identifier: string, identifierIndex: number, content: Buffer, sourceMap?: Buffer, media?: string, supports?: string, layer?: any, assetsInfo?: Map<string, AssetInfo>, assets?: { [key: string]: Source }} } CssModuleDependency */
93+ /** @typedef {{ context: string | null, identifier: string, identifierIndex: number, content: Buffer, sourceMap?: Buffer, media?: string, supports?: string, layer?: any, assetsInfo?: Map<string, AssetInfo>, assets?: { [key: string]: Source } } } CssModuleDependency */
9494/** @typedef {Module & { content: Buffer, media?: string, sourceMap?: Buffer, supports?: string, layer?: string, assets?: { [key: string]: Source }, assetsInfo?: Map<string, AssetInfo> } } CssModule */
95- /** @typedef {{ new(dependency: CssModuleDependency): CssModule } } CssModuleConstructor */
95+ /** @typedef {{ new (dependency: CssModuleDependency): CssModule } } CssModuleConstructor */
9696/** @typedef {Dependency & CssModuleDependency } CssDependency */
9797/** @typedef {Omit<LoaderDependency, "context"> } CssDependencyOptions */
98- /** @typedef {{ new(loaderDependency: CssDependencyOptions, context: string | null, identifierIndex: number): CssDependency } } CssDependencyConstructor */
98+ /** @typedef {{ new (loaderDependency: CssDependencyOptions, context: string | null, identifierIndex: number): CssDependency } } CssDependencyConstructor */
9999
100100/**
101101 * @typedef {object } VarNames
0 commit comments