import Helper from '@ember/component/helper'; import type IntlService from '../services/intl.ts'; type TParameters = Parameters; type Key = TParameters[0]; type Options = TParameters[1]; interface TSignature { Args: { Named?: Options; Positional: [Key] | [Key, Options]; }; Return: string; } export default class THelper extends Helper { intl: IntlService; compute([key, positionalOptions]: TSignature['Args']['Positional'], namedOptions: TSignature['Args']['Named']): TSignature['Return']; } export {}; //# sourceMappingURL=t.d.ts.map