UNPKG

next-ims-lti-ssl

Version:
11 lines (10 loc) 337 B
import { GetServerSidePropsContext } from 'next'; interface GetLtiContext { ctx: GetServerSidePropsContext; key: string; secret: string; persist: boolean; cookieOptions?: any; } declare const getLtiContext: ({ ctx, key, secret, persist, cookieOptions, }: GetLtiContext) => Promise<any>; export default getLtiContext;