Files
starface-outlook-sync-addin/node_modules/@fluentui/utilities/lib-commonjs/string.d.ts
T
Stefan Hacker 37ad745546 first commit
2026-04-03 09:38:48 +02:00

15 lines
386 B
TypeScript

/**
* String format method, used for scenarios where at runtime you
* need to evaluate a formatted string given a tokenized string. This
* usually only is needed in localization scenarios.
* @example
* ```tsx
* "I love {0} every {1}".format("CXP")
* ```
* will result in a Debug Exception.
*
* @public
*/
export declare function format(s: string, ...values: any[]): string;