mirror of
https://github.com/EvolutionAPI/evolution-api.git
synced 2025-12-10 18:39:38 -06:00
11 lines
202 B
TypeScript
11 lines
202 B
TypeScript
import { wa } from '@api/types/wa.types';
|
|
|
|
export const status: Record<number, wa.StatusMessage> = {
|
|
0: 'ERROR',
|
|
1: 'PENDING',
|
|
2: 'SERVER_ACK',
|
|
3: 'DELIVERY_ACK',
|
|
4: 'READ',
|
|
5: 'PLAYED',
|
|
};
|