Skip to main content
Version: 1.x

@microsoft/fast-foundation > DerivedDesignTokenValue

DerivedDesignTokenValue type

A value that is derived. These values can depend on other s or arbitrary observable properties.

Signature:
export declare type DerivedDesignTokenValue<T> = T extends Function ? never : (target: HTMLElement) => T;