context: {
    create: (
        context?: Record<string, any>,
    ) => GoogleContextTemplate & { traits: FacebookContextTemplate } & Record<
        string,
        any,
    >;
    createWithUser: (
        user: BaseUser,
        context?: Record<string, any>,
    ) => GoogleContextTemplate & { traits: FacebookContextTemplate } & Record<
        string,
        any,
    >;
} = ...

Type declaration

  • create: (
        context?: Record<string, any>,
    ) => GoogleContextTemplate & { traits: FacebookContextTemplate } & Record<
        string,
        any,
    >
  • createWithUser: (
        user: BaseUser,
        context?: Record<string, any>,
    ) => GoogleContextTemplate & { traits: FacebookContextTemplate } & Record<
        string,
        any,
    >