Skip to content

ExpoPushTicket — @gj-kit/nest-notifications

A public type from @gj-kit/nest-notifications/expo. The signature below is taken directly from the 0.1.1 release declaration.

import { ExpoPushTicket } from '@gj-kit/nest-notifications/expo';
/** The subset of Expo's ticket wire shape this library reads. */
type ExpoPushTicket = {
readonly status: 'ok';
readonly id: string;
} | {
readonly status: 'error';
readonly message?: string | undefined;
readonly details?: {
readonly error?: string | undefined;
} | undefined;
};

This declaration is the source of truth for parameters, optionality, generics, return values, and public union/type contracts. Check the package golden path and this subpath’s import conditions for required environment, permission, and error boundaries before calling it.

  • Package: @gj-kit/nest-notifications
  • Version: 0.1.1
  • Public entry: ./expo
  • Source: GitHub