/* * Copyright 2020-2021 AskChristee, LLC. All rights reserved. */ import { TResponseCoverPage, TResponseMeta } from '.'; export type TEquityHeader = string[] | number[][]; export type TEquityResults = string[] | number[][]; export type TEquityResponse = { coverPage: TResponseCoverPage; meta: TResponseMeta; header: TEquityHeader; results: TEquityResults; fumess: string; };