diff --git a/docs/quick-start.mdx b/docs/quick-start.mdx index cf2e80c0..5e1794af 100644 --- a/docs/quick-start.mdx +++ b/docs/quick-start.mdx @@ -283,8 +283,6 @@ export class AppService { } ``` - - ## Translate options ```typescript @@ -297,21 +295,18 @@ export type TranslateOptions = { lang?: string; - /** * Arguments to pass to the translation */ args?: ({ [k: string]: any } | string)[] | { [k: string]: any }; - /** * Default value to return when no translation is found */ defaultValue?: string; - /** * Debug mode */ @@ -319,7 +314,6 @@ export type TranslateOptions = { debug?: boolean; }; -``` ``` ## Example