package api type IExcel interface { SetSignatures(sign interface{}) SetContent(content interface{}) SetTitle(title string) SetRow(row int) SetIsPdf(isPdf string) GetRow() int Draws() }