This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2020-12-01 09:21:04 +00:00
|
|
|
declare module "django" {
|
2020-12-01 08:46:59 +00:00
|
|
|
export = django;
|
|
|
|
}
|
|
|
|
declare namespace django {
|
|
|
|
function gettext(name: string): string;
|
|
|
|
function ngettext(singular: string, plural: string, count: number): string;
|
|
|
|
function gettext_noop(msgid: string): string;
|
|
|
|
function pgettext(context: string, msgid: string): string;
|
|
|
|
function interpolate(fmt: string, obj: any, named: boolean): string;
|
|
|
|
}
|