86 lines
2.1 KiB
TypeScript
86 lines
2.1 KiB
TypeScript
// Copyright 2018 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import type { IntlShape } from 'react-intl';
|
|
import type { AciString } from './ServiceId';
|
|
import type { LocaleDirection } from '../../app/locale';
|
|
|
|
import type { HourCyclePreference, LocaleMessagesType } from './I18N';
|
|
|
|
export type StoryContextType = {
|
|
authorAci?: AciString;
|
|
timestamp: number;
|
|
};
|
|
|
|
export type RenderTextCallbackType = (options: {
|
|
text: string;
|
|
key: number;
|
|
}) => JSX.Element | string;
|
|
|
|
export type ReplacementValuesType = {
|
|
[key: string]: string | number | undefined;
|
|
};
|
|
|
|
export type LocalizerType = {
|
|
(key: string, values?: ReplacementValuesType): string;
|
|
getIntl(): IntlShape;
|
|
isLegacyFormat(key: string): boolean;
|
|
getLocale(): string;
|
|
getLocaleMessages(): LocaleMessagesType;
|
|
getLocaleDirection(): LocaleDirection;
|
|
getHourCyclePreference(): HourCyclePreference;
|
|
};
|
|
|
|
export enum SentMediaQualityType {
|
|
'standard' = 'standard',
|
|
'high' = 'high',
|
|
}
|
|
|
|
export enum ThemeType {
|
|
'light' = 'light',
|
|
'dark' = 'dark',
|
|
}
|
|
|
|
// These are strings so they can be interpolated into class names.
|
|
export enum ScrollBehavior {
|
|
Default = 'default',
|
|
Hard = 'hard',
|
|
}
|
|
|
|
type InternalAssertProps<
|
|
Result,
|
|
Value,
|
|
Missing = Omit<Result, keyof Value>
|
|
> = keyof Missing extends never
|
|
? Result
|
|
: Result & {
|
|
[key in keyof Required<Missing>]: [
|
|
never,
|
|
'AssertProps: missing property'
|
|
];
|
|
};
|
|
|
|
export type AssertProps<Result, Value> = InternalAssertProps<Result, Value>;
|
|
|
|
export type UnwrapPromise<Value> = Value extends Promise<infer T> ? T : Value;
|
|
|
|
export type BytesToStrings<Value> = Value extends Uint8Array
|
|
? string
|
|
: { [Key in keyof Value]: BytesToStrings<Value[Key]> };
|
|
|
|
export type JSONWithUnknownFields<Value> = Value extends Record<
|
|
string | symbol | number,
|
|
unknown
|
|
>
|
|
? Readonly<
|
|
{
|
|
[Key in keyof Value]: JSONWithUnknownFields<Value[Key]>;
|
|
} & {
|
|
// Make sure that rest property is required to handle.
|
|
__rest: never;
|
|
}
|
|
>
|
|
: Value extends Array<infer E>
|
|
? ReadonlyArray<JSONWithUnknownFields<E>>
|
|
: Value;
|