File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/apidom-ls/src/services/validation Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -801,13 +801,13 @@ export const standardLinterfunctions: FunctionItem[] = [
801801 const value = toValue ( element ) ;
802802
803803 const filterSiblingsOAS2 = (
804- el : Element & { key : { content ?: string } ; content : { value ?: string } } ,
804+ el : Element & { key ? : { content ?: string } ; content : { value ?: string } } ,
805805 ) => isString ( el ) && el . key ?. content === key && toValue ( el . content . value ) === value ;
806806
807807 const filterSiblingsOAS3 = ( el : Element ) =>
808808 isObject ( el ) && el . hasKey ( key ) && toValue ( el . get ( key ) ) === value ;
809809
810- const elements = filter ( ( el ) => {
810+ const elements = filter ( ( el : Element ) => {
811811 const classes : string [ ] = toValue ( el . getMetaProperty ( 'classes' , [ ] ) ) ;
812812
813813 return (
You can’t perform that action at this time.
0 commit comments