SYMBOL INDEX (16 symbols across 1 files) FILE: font-size/generate-css.ts type Area (line 9) | type Area = { constant PX_REGEX (line 16) | const PX_REGEX = /(-?\d+(\.\d+)?)px\b/g; constant COEFF_PRECISION (line 17) | const COEFF_PRECISION = 6; constant HEADER (line 18) | const HEADER = '/*** Generated for Custom Font Size ***/'; constant ZEROS (line 19) | const ZEROS = ['margin', 'padding']; constant AREAS (line 21) | const AREAS: Record = { function formatCoefficient (line 66) | function formatCoefficient(n: number): string { // {{{ function replacePx (line 71) | function replacePx(area: Area) { // {{{ function transformPxValue (line 85) | function transformPxValue(value: string, area: Area): string { // {{{ function processFile (line 89) | async function processFile(filePath: string, areas: Area[]): Promise { // {{{