Options
All
  • Public
  • Public/Protected
  • All
Menu

Index

Enumeration members

Aes128Gcm2 = 7

7: (Default) 128-bit AES encryption, GCM mode. This encryption mode requires the setting of salt (encryptionKdfSalt).

Aes256Gcm2 = 8

8: 256-bit AES encryption, GCM mode. This encryption mode requires the setting of salt (encryptionKdfSalt).

Type aliases

ColorValue: string | OpaqueColorValue

Type parameters

  • T

Exclude<T, U>: T extends U ? never : T

Exclude from T those types that are assignable to U

Type parameters

  • T

  • U

Type parameters

  • P = {}

Falsy: undefined | null | false
FlatArray<Arr, Depth>: { done: Arr; recur: Arr extends ReadonlyArray<infer InnerArr> ? FlatArray<InnerArr, [-1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20][Depth]> : Arr }[Depth extends -1 ? "done" : "recur"]

Type parameters

  • Arr

  • Depth: number

FlexAlignType: "flex-start" | "flex-end" | "center" | "stretch" | "baseline"
FontVariant: "small-caps" | "oldstyle-nums" | "lining-nums" | "tabular-nums" | "proportional-nums"
IteratorResult<T, TReturn>: IteratorYieldResult<T> | IteratorReturnResult<TReturn>

Type parameters

  • T

  • TReturn = any

JSXElementConstructor<P>: ((props: P) => ReactElement<any, any> | null) | (new (props: P) => Component<any, any>)

Type parameters

  • P

Key: string | number
Omit<T, K>: Pick<T, Exclude<keyof T, K>>

Construct a type with the properties of T except for those in type K.

Type parameters

  • T

  • K: keyof any

OpaqueColorValue: symbol & { __TYPE__: "Color" }
Partial<T>: { [ P in keyof T]?: T[P] }

Make all properties in T optional

Type parameters

  • T

Pick<T, K>: { [ P in K]: T[P] }

From T, pick a set of properties whose keys are in the union K

Type parameters

  • T

  • K: keyof T

Type parameters

  • T

ReactFragment: Iterable<ReactNode>
ReactInstance: Component<any> | Element
ReactNode: ReactElement | string | number | ReactFragment | ReactPortal | boolean | null | undefined
Readonly<T>: { readonly [ P in keyof T]: T[P] }

Make all properties in T readonly

Type parameters

  • T

RegisteredStyle<T>: number & { __registeredStyleBrand: T }

Keep a brand of 'T' so that calls to StyleSheet.flatten can take RegisteredStyle<T> and return T.

Type parameters

  • T

StyleProp<T>: T | RegisteredStyle<T> | RecursiveArray<T | RegisteredStyle<T> | Falsy> | Falsy

Type parameters

  • T

ValidationMap<T>: { [ K in keyof T]?: <internal>.Validator<T[K]> }

Type parameters

  • T

Validator<T>: <internal>.Validator<T>

Type parameters

  • T

WeakValidationMap<T>: { [ K in keyof T]?: null extends T[K] ? <internal>.Validator<T[K] | null | undefined> : undefined extends T[K] ? <internal>.Validator<T[K] | null | undefined> : <internal>.Validator<T[K]> }

Type parameters

  • T

Variables

Error: ErrorConstructor

Generated using TypeDoc