From 7bba8f8524b3a98856b98a95172575824200564f Mon Sep 17 00:00:00 2001 From: zachariapopcorn <52849920+zachariapopcorn@users.noreply.github.com> Date: Sat, 28 Oct 2023 08:49:21 -0700 Subject: [PATCH] Fix getWall typings (#744) Co-authored-by: Josh --- typings/index.d.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/typings/index.d.ts b/typings/index.d.ts index 2f54859a..6e2b7377 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -933,7 +933,10 @@ declare module "noblox.js" { interface WallPost { id: number; - poster: GroupUser; + poster: { + user: GroupUser; + role: Role; + }; body: string; created: Date; updated: Date;