Skip to content

Variable: customProperty

ts
const customProperty: object;

Defined in: packages/providers/src/aspects.ts:247

Type Declaration

assignment()

ts
assignment(a, index): Diagnostic[];

Consumer-side: an assignment --name: value must match the property's declared syntax.

Parameters

a

PropertyAssignment

index

CssDocIndex

Returns

Diagnostic[]

completions()

ts
completions(index): Completion[];

Parameters

index

CssDocIndex

Returns

Completion[]

definition()

ts
definition(name, index): Location | undefined;

Parameters

name

string

index

CssDocIndex

Returns

Location | undefined

hover()

ts
hover(name, index): Hover | undefined;

Parameters

name

string

index

CssDocIndex

Returns

Hover | undefined

model()

ts
model(index): Diagnostic[];

Author-side: a registered property's default (initial-value/@defaultValue) must match its syntax.

Parameters

index

CssDocIndex

Returns

Diagnostic[]

propertyUsage()

ts
propertyUsage(
   usage, 
   index, 
   options): Diagnostic[];

Parameters

usage

PropertyUsage

index

CssDocIndex

options

UsageOptions

Returns

Diagnostic[]

Released under the MIT License