Implement the cookie storage if your environment doesn't support document.cookie, i.e. in a sandboxed IFrame

Hierarchy

  • ICookieFeature

Index

Properties

Properties

readCookie

readCookie: function

Type declaration

    • (name: string): string | null
    • Parameters

      • name: string

      Returns string | null

setCookie

setCookie: function

Type declaration

    • (name: string, value: string, path?: undefined | string): void
    • Parameters

      • name: string
      • value: string
      • Optional path: undefined | string

      Returns void