Type guard to check if a value is an AppContext instance.
Value to check
True if value is an AppContext instance
const ctx = new AppContext();if (isAppContext(ctx)) { ctx.set('key', 'value');} Copy
const ctx = new AppContext();if (isAppContext(ctx)) { ctx.set('key', 'value');}
Type guard to check if a value is an AppContext instance.