/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ /** * Represents the types of events that can occur during a turn in the application. * * - `beforeTurn`: Triggered before the turn starts. * - `afterTurn`: Triggered after the turn ends. */ export type TurnEvents = 'beforeTurn' | 'afterTurn';